| Zend_Markup_Parser_Markdown This page has been created from a template that uses "zones." To proceed:
|
<ac:macro ac:name="unmigrated-inline-wiki-markup"><ac:plain-text-body><
- This component *will* fill a Zend_Markup_TokenList
- This component *would* supports Markdown Extra (Extra markup for uncommon elements)
- This component *will* not be aware of the renderer
- This component *will* implement Zend_Markup_Parser_ParserInterface
EOF;
$m = Zend_Markup::factory('Markdown');
echo $m->render($markdown);
// result:
/*
<h1>Zend_Markup_Parser_Markdown</h1>
<h2>Requirements</h2>
<ul>
<li>This component <strong>will</strong> parse Markdown accordingly to the <a href="http://daringfireball.net/projects/markdown/syntax">official Markdown syntax</a></li>
<li>This component <strong>will</strong> fill a Zend_Markup_TokenList</li>
<li>This component <strong>would</strong> supports Markdown Extra (Extra markup for uncommon elements)</li>
<li>This component <strong>will</strong> not be aware of the renderer</li>
<li>This component <strong>will</strong> implement Zend_Markup_Parser_ParserInterface</li>
</ul>
*/