diff --git a/PHP Markdown Extra Readme.text b/PHP Markdown Extra Readme.text index d4fcfc2..22ca005 100644 --- a/PHP Markdown Extra Readme.text +++ b/PHP Markdown Extra Readme.text @@ -1,7 +1,7 @@ PHP Markdown Extra ================== -Version 1.1.5 - Fri 31 Aug 2007 +Version 1.1.6 - Tue 4 Sep 2007 by Michel Fortin @@ -207,6 +207,19 @@ expected; (3) the output PHP Markdown actually produced. Version History --------------- +Extra 1.1.6 (4 Sep 2007): + +1.0.1j (4 Sep 2007): + +* Fixed a problem introduced in 1.0.1i where the closing `code` and + `pre` tags at the end of a code block were appearing in the wrong + order. + +* Overriding configuration settings by defining constants from an + external before markdown.php is included is now possible without + producing a PHP warning. + + Extra 1.1.5 (31 Aug 2007): 1.0.1i (31 Aug 2007): diff --git a/markdown.php b/markdown.php index f012cc9..2ffa472 100644 --- a/markdown.php +++ b/markdown.php @@ -12,8 +12,8 @@ # -define( 'MARKDOWN_VERSION', "1.0.1i" ); # Fri 31 Aug 2007 -define( 'MARKDOWNEXTRA_VERSION', "1.1.5" ); # Fri 31 Aug 2007 +define( 'MARKDOWN_VERSION', "1.0.1j" ); # Tue 4 Sep 2007 +define( 'MARKDOWNEXTRA_VERSION', "1.1.6" ); # Tue 4 Sep 2007 # @@ -21,18 +21,18 @@ define( 'MARKDOWNEXTRA_VERSION', "1.1.5" ); # Fri 31 Aug 2007 # # Change to ">" for HTML output -define( 'MARKDOWN_EMPTY_ELEMENT_SUFFIX', " />"); +@define( 'MARKDOWN_EMPTY_ELEMENT_SUFFIX', " />"); # Define the width of a tab for code blocks. -define( 'MARKDOWN_TAB_WIDTH', 4 ); +@define( 'MARKDOWN_TAB_WIDTH', 4 ); # Optional title attribute for footnote links and backlinks. -define( 'MARKDOWN_FN_LINK_TITLE', "" ); -define( 'MARKDOWN_FN_BACKLINK_TITLE', "" ); +@define( 'MARKDOWN_FN_LINK_TITLE', "" ); +@define( 'MARKDOWN_FN_BACKLINK_TITLE', "" ); # Optional class attribute for footnote links and backlinks. -define( 'MARKDOWN_FN_LINK_CLASS', "" ); -define( 'MARKDOWN_FN_BACKLINK_CLASS', "" ); +@define( 'MARKDOWN_FN_LINK_CLASS', "" ); +@define( 'MARKDOWN_FN_BACKLINK_CLASS', "" ); # @@ -40,14 +40,14 @@ define( 'MARKDOWN_FN_BACKLINK_CLASS', "" ); # # Change to false to remove Markdown from posts and/or comments. -define( 'MARKDOWN_WP_POSTS', true ); -define( 'MARKDOWN_WP_COMMENTS', true ); +@define( 'MARKDOWN_WP_POSTS', true ); +@define( 'MARKDOWN_WP_COMMENTS', true ); ### Standard Function Interface ### -define( 'MARKDOWN_PARSER_CLASS', 'MarkdownExtra_Parser' ); +@define( 'MARKDOWN_PARSER_CLASS', 'MarkdownExtra_Parser' ); function Markdown($text) { # @@ -71,7 +71,7 @@ function Markdown($text) { Plugin Name: Markdown Extra Plugin URI: http://www.michelf.com/projects/php-markdown/ Description: Markdown syntax allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by John Gruber. More... -Version: 1.1.5 +Version: 1.1.6 Author: Michel Fortin Author URI: http://www.michelf.com/ */ @@ -2591,22 +2591,6 @@ Version History See the readme file for detailed release notes for this version. -Extra 1.1.5 (31 Aug 2007) - -Extra 1.1.4 (3 Aug 2007) - -Extra 1.1.3 (3 Jul 2007): - -Extra 1.1.2 (7 Feb 2007) - -Extra 1.1.1 (28 Dec 2006) - -Extra 1.1 (1 Dec 2006) - -Extra 1.0.1 (9 Dec 2005) - -Extra 1.0 (5 Sep 2005) - Copyright and License ---------------------