Bumped version to 1.0.1p.

This commit is contained in:
Michel Fortin 2013-01-12 14:31:21 -05:00
parent c634db3619
commit 14f771ae37
3 changed files with 17 additions and 17 deletions

View file

@ -1,5 +1,5 @@
PHP Markdown
Copyright (c) 2004-2009 Michel Fortin
Copyright (c) 2004-2013 Michel Fortin
<http://michelf.ca/>
All rights reserved.

View file

@ -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
<http://michelf.ca/>
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: <http://daringfireball.net/projects/markdown/>
@ -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 `<br/>`) 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
<http://michelf.ca/>
All rights reserved.

View file

@ -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
# <http://michelf.ca/projects/php-markdown/>
#
# Original Markdown
# Original Markdown
# Copyright (c) 2004-2006 John Gruber
# <http://daringfireball.net/projects/markdown/>
#
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: <a href="http://daringfireball.net/projects/markdown/syntax">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href="http://daringfireball.net/">John Gruber</a>. <a href="http://michelf.ca/projects/php-markdown/">More...</a>
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
<http://michelf.ca/>
PHP Markdown
Copyright (c) 2004-2013 Michel Fortin
<http://michelf.ca/>
All rights reserved.
Based on Markdown
Based on Markdown
Copyright (c) 2003-2006 John Gruber
<http://daringfireball.net/>
All rights reserved.