comment out description

This commit is contained in:
rolux 2012-06-11 23:45:53 +02:00
parent 9d7549671c
commit 1249e7d3a1

View file

@ -350,11 +350,11 @@
/*@
Ox.parseMarkdown <f> Parses (a tiny subset of) Markdown.
\*foo\* -> <em>foo</em>
\*\*foo\*\* -> <strong>foo</strong>
\`foo\` -> <code>foo</code>
\`\`\`foo\`\`\` -> <pre><code>foo</pre></code>
[example](http://example.com "example.com") -> <a href="http://example.com" title="example.com">example</a>
#\*foo\* -> <em>foo</em>
#\*\*foo\*\* -> <strong>foo</strong>
#\`foo\` -> <code>foo</code>
#\`\`\`foo\`\`\` -> <pre><code>foo</pre></code>
#[example](http://example.com "example.com") -> <a href="http://example.com" title="example.com">example</a>
> Ox.parseMarkdown('*foo* **bar** `baz` ``back`tick``')
'<em>foo</em> <strong>bar</strong> <code>baz</code> <code>back`tick</code>'
> Ox.parseMarkdown('<http://example.com>')