From 9fb1f6336d6e8f8a486a5757e37a2a6558c3929f Mon Sep 17 00:00:00 2001 From: Michel Fortin Date: Sat, 10 Oct 2009 10:11:04 -0400 Subject: [PATCH] Updated version number to 1.2.4. --- PHP Markdown Extra Readme.text | 4 ++-- markdown.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PHP Markdown Extra Readme.text b/PHP Markdown Extra Readme.text index 46e348c..b72ee99 100644 --- a/PHP Markdown Extra Readme.text +++ b/PHP Markdown Extra Readme.text @@ -1,7 +1,7 @@ PHP Markdown Extra ================== -Version 1.2.3 - Wed 31 Dec 2008 +Version 1.2.4 - Sat 10 Oct 2009 by Michel Fortin @@ -252,7 +252,7 @@ Version History * Fixed some corner-cases mixing underscore-ephasis and asterisk-emphasis. -Current Extra: +Extra 1.2.4: * Fixed a problem where unterminated tags in indented code blocks could prevent proper escaping of characaters in the code block. diff --git a/markdown.php b/markdown.php index 0c99577..ee3dddb 100644 --- a/markdown.php +++ b/markdown.php @@ -13,7 +13,7 @@ define( 'MARKDOWN_VERSION', "1.0.1n" ); # Sat 10 Oct 2009 -define( 'MARKDOWNEXTRA_VERSION', "1.2.3" ); # Wed 31 Dec 2008 +define( 'MARKDOWNEXTRA_VERSION', "1.2.4" ); # Sat 10 Oct 2009 # @@ -71,7 +71,7 @@ function Markdown($text) { Plugin Name: Markdown Extra Plugin URI: http://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.2.3 +Version: 1.2.4 Author: Michel Fortin Author URI: http://michelf.com/ */ @@ -2698,7 +2698,7 @@ class MarkdownExtra_Parser extends Markdown_Parser { if (!empty($this->footnotes_ordered)) { $text .= "\n\n"; $text .= "
\n"; - $text .= "empty_element_suffix ."\n"; $text .= "
    \n\n"; $attr = " rev=\"footnote\"";