comment out description
This commit is contained in:
parent
9d7549671c
commit
1249e7d3a1
1 changed files with 5 additions and 5 deletions
|
@ -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>')
|
||||
|
|
Loading…
Reference in a new issue