instiki/vendor/plugins/maruku/tests/unittest/inline_html.md
Jacques Distler a84648cff1 Fix Maruku Escaping Bug
Sync with latest Maruku (now on github).
lib/maruku/ext/math/mathml_engines/none.rb should
HTML-escape the TeX source code. No it does.
2009-05-13 01:27:39 -05:00

3.3 KiB

Write a comment abouth the test here. *** Parameters: *** {:css=>"style.css"} *** Markdown input: *** CSS: style.css

Input:

<em>Emphasis</em>

Result: Emphasis

Input:

<img src="http://jigsaw.w3.org/css-validator/images/vcss"/>

Result on span:

Result alone:

Without closing:

This is *true* markdown text (paragraph)
<p markdown="1">
	This is *true* markdown text (no paragraph)
</p>
<p markdown="block">
	This is *true* markdown text (block paragraph)
</p>
This is a *true* markdown text. (no par) This is *true* markdown text. (par)

*** Output of inspect *** md_el(:document,[ md_par(["Input:"]), md_el(:code,[],{:raw_code=>"Emphasis"},[]), md_par(["Result: ", md_html("Emphasis")]), md_par(["Input:"]), md_el(:code,[],{:raw_code=>"<img src="http://jigsaw.w3.org/css-validator/images/vcss"/>"},[]), md_par([ "Result on span: ", md_html("<img src="http://jigsaw.w3.org/css-validator/images/vcss" />") ]), md_par(["Result alone:"]), md_html("<img src="http://jigsaw.w3.org/css-validator/images/vcss" />"), md_par(["Without closing:"]), md_html("<img src="http://jigsaw.w3.org/css-validator/images/vcss" />"), md_html("<div markdown="1">\n\tThis is true markdown text (paragraph)\n\n\t<p markdown="1">\n\t\tThis is true markdown text (no paragraph)\n\t

\n\t<p markdown="block">\n\t\tThis is true markdown text (block paragraph)\n\t

\n"), md_html("\n\n<td markdown="1">This is a true markdown text. (no par)\n<td markdown="block">This is true markdown text. (par)\n\n
") ],{},[]) *** Output of to_html ***

Input:

<em>Emphasis</em>

Result: Emphasis

Input:

<img src="http://jigsaw.w3.org/css-validator/images/vcss"/>

Result on span:

Result alone:

Without closing:

This is

true

markdown text (paragraph)

This is

true

markdown text (no paragraph)

This is

true

markdown text (block paragraph)

This is a

true

markdown text. (no par)

This is

true

markdown text. (par)

*** Output of to_latex *** Input:

\begin{verbatim}Emphasis\end{verbatim} Result:

Input:

\begin{verbatim}\end{verbatim} Result on span:

Result alone:

Without closing: *** Output of to_md *** Input:

Result:

Input:

Result on span:

Result alone:

Without closing: *** Output of to_s *** Input:Result: Input:Result on span: Result alone:Without closing: *** EOF ***

OK!

*** Output of Markdown.pl *** (not used anymore) *** Output of Markdown.pl (parsed) *** (not used anymore)