0-indent.js 156 B

1234567891011121314151617181920
  1. md`
  2. This line shouldn't be indented at all in the resulting output.
  3. `
  4. if (true) {
  5. md`
  6. text1
  7. - 123
  8. - 456
  9. text2
  10. - 123
  11. - 456
  12. text3
  13. - 123
  14. - 456
  15. `;
  16. }