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 69 70 71 72 73
|
<div markdown="1">_foo_</div>
<div markdown=1 class="baz">
_bar_
</div>
<div markdown>
_blah_
</div>
<div markdown="1" name="Example">
The text of the `Example` element.
<div markdown="1" name="DefaultBlockMode">
This text gets wrapped in `p` tags.
</div>
The tail of the `DefaultBlockMode` subelement.
<p markdown="1" name="DefaultSpanMode">
This text *is not* wrapped in additional `p` tags.
</p>
The tail of the `DefaultSpanMode` subelement.
<div markdown="span" name="SpanModeOverride">
This `div` block is not wrapped in paragraph tags.
Note: Subelements are not required to have tail text.
</div>
<p markdown="block" name="BlockModeOverride">
This `p` block *is* foolishly wrapped in further paragraph tags.
</p>
The tail of the `BlockModeOverride` subelement.
<div name="RawHtml">
Raw html blocks may also be nested.
</div>
</div>
This text is after the markdown in html.
<div markdown="1" name="issue308">
<span>1</span>
<span>2</span>
</div>
<div markdown="1" name="issue368">
Markdown is *active* here.
<div name="RawHtml">
Raw html blocks may also be nested.
</div>
Markdown is *still* active here.
</div>
Markdown is *active again* here.
<div markdown=1>
foo bar
<em>bar</em>
</div>
|