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.for...@michelf.ca
http://michelf.ca

_______________________________________________
Markdown-Discuss mailing list
Markdown-Discuss@six.pairlist.net
http://six.pairlist.net/mailman/listinfo/markdown-discuss

Reply via email to