inline_html.unit 413 B

123456789101112131415161718
  1. >>> within a paragraph
  2. Within a <em class="x">paragraph</EM>.
  3. <<<
  4. <p>Within a <em class="x">paragraph</EM>.</p>
  5. >>> not HTML
  6. Obviously, 3 < 5 and 7 > 2.
  7. Not HTML: <3>, <_a>, <>
  8. <<<
  9. <p>Obviously, 3 &lt; 5 and 7 &gt; 2.
  10. Not HTML: &lt;3&gt;, &lt;_a&gt;, &lt;&gt;</p>
  11. >>> "markdown" within a tag is not parsed
  12. Text <a href="_foo_">And "_foo_"</a>.
  13. <<<
  14. <p>Text <a href="_foo_">And &quot;<em>foo</em>&quot;</a>.</p>