Releases: duo-labs/markflow
MarkFlow v0.2.1
This version of MarkFlow contains a minor fix to paragraph parsing that ensures trailing characters after a link (e.g. the comma in this string [link](http://example.com),
will be captured as a single word and those letters won't make be put on a separate line.
MarkFlow v0.2.0
I am happy to announce the release of MarkFlow v0.2.0. This release is a near rewrite of the tool that better reflects the CommonMark standard. (It helps that I read the thing this time around.)
There is a major change in this release in that indented lists no longer maintain their indentation. This was a feature I never personally used and lists were the only section type that supported it. I am very open to reimplementing the feature if anyone wants it (and add support in all section types).
Let me know if you run into any issues. I hope you enjoy the latest update.
MarkFlow v0.1.2
This update release provides support for semantic paragraphs (i.e. when a paragraph ends in two spaces, it is always the end of a paragraph) like:
double space after me
no double space after me
so we're the same paragraph
becomes:
double space after me
no double space after me so we're the same paragraph
It also adds support for horizontal lines that use underscores ("_") and asterisks ("*").
MarkFlow v0.1.1
This release causes MarkFlow to treat text passed on STDIN as content as opposed to a list of files. It prints the result to STDOUT.
> echo -e "Hello\n-" | markflow
Hello
-----
MarkFlow v0.1.0
The initial release of MarkForm. See README.md
for more details.