Sync with latest Maruku

Contains Ari Stern's additions for Blahtex support.
This commit is contained in:
Jacques Distler 2008-08-05 13:18:23 -05:00
parent e1c7d035c9
commit 37aff87d71
100 changed files with 715 additions and 2848 deletions

View file

@ -28,20 +28,6 @@ md_el(:document,[md_par([md_code("\\\\")]), md_par([md_code("\\")])],{},[])
*** Output of Markdown.pl ***
<p><code>\\</code></p>
<p><code>\</code></p>
(not used anymore)
*** Output of Markdown.pl (parsed) ***
<div>
<p>
<code>
\\
</code>
</p>
<p>
<code>
\
</code>
</p>
</div>
(not used anymore)

View file

@ -65,36 +65,6 @@ ParagraphheaderParagraphheaderParagraphheader
*** Output of Markdown.pl ***
<p>Paragraph</p>
<h3>header</h3>
<p>Paragraph</p>
<h2>header</h2>
<p>Paragraph</p>
<h1>header</h1>
(not used anymore)
*** Output of Markdown.pl (parsed) ***
<div>
<p>
Paragraph
</p>
<h3>
header
</h3>
<p>
Paragraph
</p>
<h2>
header
</h2>
<p>
Paragraph
</p>
<h1>
header
</h1>
</div>
(not used anymore)

View file

@ -25,13 +25,6 @@ md_el(:document,[md_par([md_code("There is a literal backtick (`) here.")])],{},
*** Output of Markdown.pl ***
<p><code>There is a literal backtick (`) here.</code></p>
(not used anymore)
*** Output of Markdown.pl (parsed) ***
<div>
<p>
<code>
There is a literal backtick (`) here.
</code>
</p>
</div>
(not used anymore)

View file

@ -164,92 +164,6 @@ Paragraph, list with no space: * ciaoParagraph, list with 1 space: * ciaoParagra
*** Output of Markdown.pl ***
<p>Paragraph, list with no space:
* ciao</p>
<p>Paragraph, list with 1 space:
* ciao</p>
<p>Paragraph, list with 3 space:
* ciao</p>
<p>Paragraph, list with 4 spaces:
* ciao</p>
<p>Paragraph, list with 1 tab:
* ciao</p>
<p>Paragraph (1 space after), list with no space:
* ciao</p>
<p>Paragraph (2 spaces after), list with no space: <br />
* ciao</p>
<p>Paragraph (3 spaces after), list with no space: <br />
* ciao</p>
<p>Paragraph with block quote:</p>
<blockquote>
<p>Quoted</p>
</blockquote>
<p>Paragraph with header:</p>
<h3>header</h3>
<p>Paragraph with header on two lines:</p>
<h2>header</h2>
(not used anymore)
*** Output of Markdown.pl (parsed) ***
<div>
<p>
Paragraph, list with no space: * ciao
</p>
<p>
Paragraph, list with 1 space: * ciao
</p>
<p>
Paragraph, list with 3 space: * ciao
</p>
<p>
Paragraph, list with 4 spaces: * ciao
</p>
<p>
Paragraph, list with 1 tab: * ciao
</p>
<p>
Paragraph (1 space after), list with no space: * ciao
</p>
<p>
Paragraph (2 spaces after), list with no space:
<br/>
* ciao
</p>
<p>
Paragraph (3 spaces after), list with no space:
<br/>
* ciao
</p>
<p>
Paragraph with block quote:
</p>
<blockquote>
<p>
Quoted
</p>
</blockquote>
<p>
Paragraph with header:
</p>
<h3>
header
</h3>
<p>
Paragraph with header on two lines:
</p>
<h2>
header
</h2>
</div>
(not used anymore)