strong.unit 539 B

123456789101112131415161718192021222324252627282930313233
  1. >>> using asterisks
  2. before **strong** after
  3. <<<
  4. <p>before <strong>strong</strong> after</p>
  5. >>> using underscores
  6. before __strong__ after
  7. <<<
  8. <p>before <strong>strong</strong> after</p>
  9. >>> unmatched asterisks
  10. before ** after
  11. <<<
  12. <p>before ** after</p>
  13. >>> unmatched underscores
  14. before __ after
  15. <<<
  16. <p>before __ after</p>
  17. >>> multiple spans in one text
  18. a **one** b __two__ c
  19. <<<
  20. <p>a <strong>one</strong> b <strong>two</strong> c</p>
  21. >>> multi-line
  22. before **first
  23. second** after
  24. <<<
  25. <p>before <strong>first
  26. second</strong> after</p>