headers_with_ids.unit 712 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. >>> simple header
  2. # header
  3. <<<
  4. <h1 id="header">header</h1>
  5. >>> header that starts with garbage
  6. ## 2. header again
  7. <<<
  8. <h2 id="2-header-again">2. header again</h2>
  9. >>> header with inline syntaxes
  10. ### headers **rock** `etc.`
  11. <<<
  12. <h3 id="headers-rock-etc">headers <strong>rock</strong> <code>etc.</code></h3>
  13. >>> non-unique headers
  14. # header
  15. ## header
  16. <<<
  17. <h1 id="header">header</h1>
  18. <h2 id="header-2">header</h2>
  19. >>> header starts with inline syntax
  20. # *headers* etc.
  21. <<<
  22. <h1 id="headers-etc"><em>headers</em> etc.</h1>
  23. >>> numbers-only headers (like a changelog)
  24. # 1.2.34
  25. ## 1.23.4
  26. ## 1.2.3+4
  27. <<<
  28. <h1 id="1234">1.2.34</h1>
  29. <h2 id="1234-2">1.23.4</h2>
  30. <h2 id="1234-3">1.2.3+4</h2>
  31. >>> no id
  32. # #
  33. <<<
  34. <h1></h1>