markdown2pdf 0.4.0

Create PDF with Markdown files (a md to pdf transpiler)
Documentation
# HTML comments

## Block-level comments

Single-line comment at line start:

<!-- a simple block comment -->

Multi-line comment:

<!--
line one
line two
line three
-->

Comment with markdown chars inside (stays literal):

<!--
*not emphasis*
`not code`
[not a link](u)
-->

Comment followed by paragraph (next line is fresh markdown):

<!-- header -->
This is now a paragraph with *emphasis*.

Comment with text after closer on the same line (per spec the whole line is part of the block):

<!-- foo -->*bar*
*baz*

## Inline comments (mid-paragraph)

Text before <!-- inline comment --> and text after.

Multi-line inline comment in a paragraph: prefix <!-- line 1
line 2
end --> then more text.

## Short comment forms

Empty body `<!-->`:

text <!--> tail

Single-hyphen body `<!--->`:

text <!---> tail

Edge case: malformed end forms (no `-->`):

paragraph with <!-- never closes