markdown2pdf 0.3.0

Create PDF with Markdown files (a md to pdf transpiler)
Documentation
# Fix #16 — Raw inline HTML

## Open and closing tags

Plain tag: this is <strong>bold via HTML</strong> in the middle of text.

Self-closing: line one<br/>line two on a different visual line.

## Tag with attributes

Anchor: <a href="https://example.com">click here</a> — the tag attributes are
preserved.

Quoted attribute: <span class="hint">styled</span>.

Single-quoted: <span class='emoji'>x</span>.

Unquoted attribute: <input type=text> — accepted by the parser.

## Disambiguation

HTML comment still works: <!-- this is a comment -->

Autolink still works: <https://example.com> renders as a link.

A bare less-than stays as text: a < b is true (no fake-tag interpretation).

A non-tag in angle brackets passes through as literal text:
<not a real tag> — should render with the brackets visible.