The following additional emphasis are supported:
Allows to strikethrough a span of text by surrounding it by ~~
. The semantic used for the generated HTML is the tag <del>
.
The following text ~~is deleted~~
.
<p>The following text <del>is deleted</del></p>
Superscripts can be written by surrounding a text by ^ characters; subscripts can be written by surrounding the subscripted text by ~ characters
H~2~O is a liquid. 2^10^ is 1024
.
<p>H<sub>2</sub>O is a liquid. 2<sup>10</sup> is 1024</p>
Certain punctuation characters are exempted from the rule forbidding them within inline delimiters
One quintillionth can be expressed as 10^-18^
Daggers^†^ and double-daggers^‡^ can be used to denote notes.
.
<p>One quintillionth can be expressed as 10<sup>-18</sup></p>
<p>Daggers<sup>†</sup> and double-daggers<sup>‡</sup> can be used to denote notes.</p>
Inserted text can be used to specify that a text has been added to a document. The semantic used for the generated HTML is the tag <ins>
.
++Inserted text++
.
<p><ins>Inserted text</ins></p>
Marked text can be used to specify that a text has been marked in a document. The semantic used for the generated HTML is the tag <mark>
.
==Marked text==
.
<p><mark>Marked text</mark></p>
This is text MyBrand ^®^ and MyTrademark ^™^
This is text MyBrand^®^ and MyTrademark^™^
This is text MyBrand~®~ and MyCopyright^©^
.
<p>This is text MyBrand <sup>®</sup> and MyTrademark <sup>TM</sup>
This is text MyBrand<sup>®</sup> and MyTrademark<sup>TM</sup>
This is text MyBrand<sub>®</sub> and MyCopyright<sup>©</sup></p>