From 14f771ae37983eeff617f3c1b679b38540d1f55a Mon Sep 17 00:00:00 2001 From: Michel Fortin Date: Sat, 12 Jan 2013 14:31:21 -0500 Subject: [PATCH] Bumped version to 1.0.1p. --- License.text | 2 +- PHP Markdown Readme.text | 14 +++++++------- markdown.php | 18 +++++++++--------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/License.text b/License.text index fc604c8..48a19cf 100644 --- a/License.text +++ b/License.text @@ -1,5 +1,5 @@ PHP Markdown -Copyright (c) 2004-2009 Michel Fortin +Copyright (c) 2004-2013 Michel Fortin All rights reserved. diff --git a/PHP Markdown Readme.text b/PHP Markdown Readme.text index 649df53..3759e6d 100644 --- a/PHP Markdown Readme.text +++ b/PHP Markdown Readme.text @@ -1,9 +1,9 @@ PHP Markdown ============ -Version 1.0.1o - Sun 8 Jan 2012 +Version 1.0.1p - Sun 13 Jan 2013 -by Michel Fortin +by Michel Fortin based on work by John Gruber @@ -22,9 +22,9 @@ tool, written in Perl, that converts the plain text markup to HTML. PHP Markdown is a port to PHP of the original Markdown program by John Gruber. -PHP Markdown can work as a plug-in for WordPress and bBlog, as a -modifier for the Smarty templating engine, or as a replacement for -Textile formatting in any software that supports Textile. +PHP Markdown can work as a plug-in for WordPress, as a modifier for +the Smarty templating engine, or as a replacement for Textile +formatting in any software that supports Textile. Full documentation of Markdown's syntax is available on John's Markdown page: @@ -191,7 +191,7 @@ See Installation and Requirement above for details. Version History --------------- -Current: +1.0.1p (13 Jan 2013): * Fixed an issue where some XML-style empty tags (such as `
`) were not recognized correctly as such when inserted into Markdown-formatted text. @@ -741,7 +741,7 @@ Copyright and License --------------------- PHP Markdown -Copyright (c) 2004-2009 Michel Fortin +Copyright (c) 2004-2013 Michel Fortin All rights reserved. diff --git a/markdown.php b/markdown.php index 6d05994..89d961f 100644 --- a/markdown.php +++ b/markdown.php @@ -2,17 +2,17 @@ # # Markdown - A text-to-HTML conversion tool for web writers # -# PHP Markdown -# Copyright (c) 2004-2012 Michel Fortin +# PHP Markdown +# Copyright (c) 2004-2013 Michel Fortin # # -# Original Markdown +# Original Markdown # Copyright (c) 2004-2006 John Gruber # # -define( 'MARKDOWN_VERSION', "1.0.1o" ); # Sun 8 Jan 2012 +define( 'MARKDOWN_VERSION', "1.0.1p" ); # Sun 13 Jan 2013 # @@ -62,7 +62,7 @@ function Markdown($text) { Plugin Name: Markdown Plugin URI: http://michelf.ca/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.0.1o +Version: 1.0.1p Author: Michel Fortin Author URI: http://michelf.ca/ */ @@ -1702,12 +1702,12 @@ See the readme file for detailed release notes for this version. Copyright and License --------------------- -PHP Markdown -Copyright (c) 2004-2009 Michel Fortin - +PHP Markdown +Copyright (c) 2004-2013 Michel Fortin + All rights reserved. -Based on Markdown +Based on Markdown Copyright (c) 2003-2006 John Gruber All rights reserved.