Displaying 4 results from an estimated 4 matches for "markdownextra_parser".
2006 May 19
1
Object-Oriented PHP Markdown/SmartyPants
...mselves, but you can also
use the parser directly. This:
$html = Markdown($text);
is now equivalent to this if you're using PHP Markdown:
$parser = new Markdown_Parser;
$html = $parser->transform($text);
or this if you're using PHP Markdown Extra:
$parser = new MarkdownExtra_Parser;
$html = $parser->transform($text);
PHP Markdown and PHP Markdown Extra are still both packaged as one
"markdown.php" file, each of them containing a Markdown function; so
they're still mutually exclusive. But the "markdown.php" file of PHP
Markdown Extra cont...
2007 Apr 19
1
Use of Markdown Extra in a forum
from : benoit at transmekong.com
to : markdown-discuss at six.pairlist.net
Subj.: Use of Markdown Extra in a forum
Date : Apr 19th 2007, 15:24:25 (GMT+7)
Dear all,
I have tried to implement PHP Markdown Extra in a forum (PunBB) and found that however well each message is translated, there are collisions when different messages in the same page have the same inside link names (footnotes, title
2010 Sep 28
1
PHP Markdown Extra fork for MathJax
My fork of Michel Fortin's PHP Markdown Extra has been updated to
include support for MathJax as well as jsMath. Both of these are
JavaScript libraries for using LaTeX syntax, e.g., \(E = mc^2\), to
include high quality, scalable equations (not just bitmapped images of
equations) in your HTML pages.
Links to more information:
* A [description of PHP Markdown Extra Math][1], along with some
2006 Sep 16
5
PHP Markdown 1.0.2b7
...ich should make it a lot easier to write extensions, like my own
PHP Markdown Extra. If you want to create your own extension, I
suggest to take a look at the code for the new PHP Markdown Extra
I'll release in a few minutes. The most interesting part is probably
the constructor for the MarkdownExtra_Parser class.
Another big change is the automatic hashing of all Markdown-generated
HTML content. Previous versions of PHP Markdown Extra were already
doing this, but it was limited on block-level elements only and was
done to have less call to make to the expensive html block parser.
This has be...