1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
This should threat the last as a literal asterisk.
*** Parameters: ***
{:on_error=>:warning}
*** Markdown input: ***
Hello: ! \! \` \{ \} \[ \] \( \) \# \. \! * \* *
Ora, *emphasis*, **bold**, * <- due asterischi-> * , un underscore-> _ , _emphasis_,
incre*dible*e!
This is ``Code with a special: -> ` <- ``(after)
`Start ` of paragraph
End of `paragraph `
*** Output of inspect ***
md_el(:document,[
md_par(["Hello: ! ! ` { } [ ] ( ) # . ! * * *"]),
md_par([
"Ora, ",
md_em(["emphasis"]),
", ",
md_strong(["bold"]),
", * <- due asterischi-> * , un underscore-> _ , ",
md_em(["emphasis"]),
", incre",
md_em(["dible"]),
"e!"
]),
md_par(["This is ", md_code("Code with a special: -> ` <-"), "(after)"]),
md_par([md_code("Start "), " of paragraph"]),
md_par(["End of ", md_code("paragraph ")])
],{},[])
*** Output of to_html ***
<p>Hello: ! ! ` { } [ ] ( ) # . ! * * *</p>
<p>Ora, <em>emphasis</em>, <strong>bold</strong>, * <- due asterischi-> * , un underscore-> _ , <em>emphasis</em>, incre<em>dible</em>e!</p>
<p>This is <code>Code with a special: -> ` <-</code>(after)</p>
<p><code>Start </code> of paragraph</p>
<p>End of <code>paragraph </code></p>
*** Output of to_latex ***
Hello: ! ! ` \{ \} [ ] ( ) \# . ! * * *
Ora, \emph{emphasis}, \textbf{bold}, * {\tt \symbol{60}}- due asterischi-{\tt \symbol{62}} * , un underscore-{\tt \symbol{62}} \_ , \emph{emphasis}, incre\emph{dible}e!
This is {\colorbox[rgb]{1.00,0.93,1.00}{\tt Code\char32with\char32a\char32special\char58\char32\char45\char62\char32\char96\char32\char60\char45}}(after)
{\colorbox[rgb]{1.00,0.93,1.00}{\tt Start\char32}} of paragraph
End of {\colorbox[rgb]{1.00,0.93,1.00}{\tt paragraph\char32}}
*** Output of to_md ***
Hello: ! \! \` \{ \} \[ \] \( \) \# \. \! * \* *
Ora, *emphasis*, **bold**, * <- due
asterischi-> * , un underscore-> _ ,
*emphasis*, incre*dible*e!
This is ``Code with a special: -> ` <- ``(after)
`Start ` of paragraph
End of `paragraph `
*** Output of to_s ***
Hello: ! ! ` { } [ ] ( ) # . ! * * *Ora, emphasis, bold, * <- due asterischi-> * , un underscore-> _ , emphasis, incrediblee!This is (after) of paragraphEnd of
|