This should fix #10. Using this markdown file as an example:
---
item1: hello
item:
- my
- list
---
# Title
This is sentence one. This is sentence two.
Previously, the output from mdslw was:
---
item1:
hello item:
- my
- list
---
# Title
This is sentence one.
This is sentence two.
Note, that the frontmatter is broken now. My code changes strips the frontmatter from the markdown input before formatting, and adds it back at the end. Now, running mdslw results in:
---
item1: hello
item:
- my
- list
---
# Title
This is sentence one.
This is sentence two.
This should fix #10. Using this markdown file as an example:
Previously, the output from
mdslw
was:Note, that the frontmatter is broken now. My code changes strips the frontmatter from the markdown input before formatting, and adds it back at the end. Now, running
mdslw
results in: