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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
<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>
<div markdown="1" name="issue584">
[link]: http://example.com
<div markdown="1">
[link][link]
</div>
</div>
<div markdown="1" name="issue584">
*[abbr]: Abbreviation
<div markdown="1">
abbr
</div>
</div>
<div markdown="1" name="issue584">
[^1]:
1. The top couple half figure, contrary sides and hands across with bottom couple,
Half figure back on your own sides, and turn partner to places,
Swing partners with right hands into straight line long-ways, as in a reel, and
Set,
Hey and return to places,
The other three couples do the same.
2. Top and bottom couples meet and set,
Then each gentleman leas the opposite lady to the couple on his left, and set,
Aach four right and left,
Swing side couples to places, and turn partners all eight,
The other two couple o the same.
<div markdown="1">
footnote[^1]
</div>
</div>
<div markdown="1" name="issue584">
[link]: http://example.com
<div markdown="1">
[link][link]
</div>
</div>
<div markdown="1" name="issue584">
*[abbr]: Abbreviation
<div markdown="1">
abbr
</div>
</div>
<div markdown="1" name="issue584">
[^2]:
1. The top couple half figure, contrary sides and hands across with bottom couple,
Half figure back on your own sides, and turn partner to places,
Swing partners with right hands into straight line long-ways, as in a reel, and
Set,
Hey and return to places,
The other three couples do the same.
2. Top and bottom couples meet and set,
Then each gentleman leas the opposite lady to the couple on his left, and set,
Aach four right and left,
Swing side couples to places, and turn partners all eight,
The other two couple o the same.
<div markdown="1">
footnote[^2]
</div>
</div>
|