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

@ -101,69 +101,6 @@ Maruku translates HTML entities to the equivalent in LaTeX:EntityResultabEntity-
*** Output of Markdown.pl ***
<p>Maruku translates HTML entities to the equivalent in LaTeX:</p>
<p>Entity | Result
------------|----------
<code>&amp;copy;</code> | &copy;
<code>&amp;pound;</code> | &pound;
<code>a&amp;nbsp;b</code> | a&nbsp;b
<code>&amp;lambda;</code> | &lambda;
<code>&amp;mdash;</code> | &mdash;</p>
<p>Entity-substitution does not happen in code blocks or inline code.</p>
<p>The following should not be translated:</p>
<pre><code>&amp;copy;
</code></pre>
<p>It should read just like this: <code>&amp;copy;</code>.</p>
(not used anymore)
*** Output of Markdown.pl (parsed) ***
<div>
<p>
Maruku translates HTML entities to the equivalent in LaTeX:
</p>
<p>
Entity | Result ------------|----------
<code>
&amp;copy;
</code>
| &copy;
<code>
&amp;pound;
</code>
| &pound;
<code>
a&amp;nbsp;b
</code>
| a&nbsp;b
<code>
&amp;lambda;
</code>
| &lambda;
<code>
&amp;mdash;
</code>
| &mdash;
</p>
<p>
Entity-substitution does not happen in code blocks or inline code.
</p>
<p>
The following should not be translated:
</p>
<pre>
<code>
&amp;copy;
</code>
</pre>
<p>
It should read just like this:
<code>
&amp;copy;
</code>
.
</p>
</div>
(not used anymore)