Skip to content

Commit

Permalink
Bumped version to 1.2.8 and updated readme file.
Browse files Browse the repository at this point in the history
  • Loading branch information
michelf committed Nov 29, 2013
1 parent 0ed3a96 commit e5e6f6a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions PHP Markdown Extra Readme.text
@@ -1,7 +1,7 @@
PHP Markdown Extra
==================

Version 1.2.7 - 11 Apr 2013
Version 1.2.8 - 29 Nov 2013

by Michel Fortin
<http://michelf.ca/>
Expand Down Expand Up @@ -195,15 +195,18 @@ See Installation and Requirement above for details.
Version History
---------------

Current Extra:
Extra 1.2.8:

* Added backtick fenced code blocks, originally from Github-flavored Markdown.


1.0.2

* Added support for the `tel:` URL scheme in automatic links.

<tel:+1-111-111-1111>

is converted to:
It gets converted to this (note the `tel:` prefix becomes invisible):

<a href="tel:+1-111-111-1111">+1-111-111-1111</a>

Expand Down
6 changes: 3 additions & 3 deletions markdown.php
Expand Up @@ -12,8 +12,8 @@
#


define( 'MARKDOWN_VERSION', "1.0.1q" ); # 11 Apr 2013
define( 'MARKDOWNEXTRA_VERSION', "1.2.7" ); # 11 Apr 2013
define( 'MARKDOWN_VERSION', "1.0.2" ); # 29 Nov 2013
define( 'MARKDOWNEXTRA_VERSION', "1.2.8" ); # 29 Nov 2013


#
Expand Down Expand Up @@ -79,7 +79,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.2.7
Version: 1.2.8
Author: Michel Fortin
Author URI: http://michelf.ca/
*/
Expand Down

0 comments on commit e5e6f6a

Please sign in to comment.