[ANN] PHP Markdown Lib 1.4.0, PHP Markdown Extra 1.2.8, PHP Markdown 1.0.2
Michel Fortin
michel.fortin at michelf.ca
Fri Nov 29 17:09:11 EST 2013
This is a new update to PHP Markdown. The most notable feature is that Markdown Extra now supports Github-flavored backtick fenced code blocks. You can download it from here:
<http://michelf.ca/projects/php-markdown/>
Changes since last version
--------------------------
In PHP Markdown Lib 1.4.0, PHP Markdown Extra 1.2.8, and PHP Markdown 1.0.2:
* Added support for the `tel:` URL scheme in automatic links.
<tel:+1-111-111-1111>
It gets converted to this (note the `tel:` prefix becomes invisible):
<a href="tel:+1-111-111-1111">+1-111-111-1111</a>
In PHP Markdown Lib 1.4.0 and PHP Markdown Extra 1.2.8:
* Added backtick fenced code blocks to MarkdownExtra, originally from
Github-Flavored Markdown.
In PHP Markdown Lib 1.4.0:
* Added an interface called MarkdownInterface implemented by both
the Markdown and MarkdownExtra parsers. You can use the interface if
you want to create a mockup parser object for unit testing.
* For those of you who cannot use class autoloading, you can now
include `Michelf/Markdown.inc.php` or `Michelf/MarkdownExtra.inc.php` (note
the `.inc.php` extension) to automatically include other files required
by the parser.
--
Michel Fortin
michel.fortin at michelf.ca
http://michelf.ca
More information about the Markdown-Discuss
mailing list