strikethrough_extension.unit 353 B

1234567891011121314151617181920
  1. >>> Strikethrough (extension) - 491
  2. ~~Hi~~ Hello, world!
  3. <<<
  4. <p><del>Hi</del> Hello, world!</p>
  5. >>> Strikethrough (extension) - 492
  6. This ~~has a
  7. new paragraph~~.
  8. <<<
  9. <p>This ~~has a</p>
  10. <p>new paragraph~~.</p>
  11. >>> single tilde
  12. ~Hi~ there.
  13. <<<
  14. <p><del>Hi</del> there.</p>
  15. >>> single tilde with double tilde
  16. ~Hi~~ there.
  17. <<<
  18. <p><del>Hi</del>~ there.</p>