diff --git a/readme.txt b/readme.txt index 19300b5..d907363 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: Tags: markdown, editor, parsedown Requires at least: 3.0 Tested up to: 4.0 -Stable tag: 0.1 +Stable tag: 0.1.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -22,6 +22,11 @@ Parse the_content with [Parsedown Extra](http://www.parsedown.org/demo?extra=1) == Changelog == += 0.1.1 = +*2014-09-06* + +* fixing breaking [embed] elements by reodering this plugin + = 0.1 = *2014-07-22* diff --git a/wp-common b/wp-common index a2af50d..d8ed40a 160000 --- a/wp-common +++ b/wp-common @@ -1 +1 @@ -Subproject commit a2af50d2a60812c41e6539b17b310a43fd5535dc +Subproject commit d8ed40adaae8be884a4dd14e5744183f4d183640 diff --git a/wp-parsedown.php b/wp-parsedown.php index e774e67..f369423 100644 --- a/wp-parsedown.php +++ b/wp-parsedown.php @@ -3,7 +3,7 @@ Plugin Name: WP-Parsedown Plugin URI: https://github.com/petermolnar/wp-parsedown Description: [Parsedown Extra](www.parsedown.org/demo?extra=1) on-the-fly -Version: 0.1 +Version: 0.1.1 Author: Peter Molnar Author URI: https://petermolnar.eu/ License: GPLv3 @@ -54,7 +54,7 @@ class WP_PARSEDOWN extends PluginAbstract { */ public function plugin_post_init () { /* display markdown */ - add_filter( 'the_content', array(&$this, 'markdown_on_the_fly'), 1 ); + add_filter( 'the_content', array(&$this, 'markdown_on_the_fly'), 9 ); }