markdown2pdf 0.3.0

Create PDF with Markdown files (a md to pdf transpiler)
Documentation
# Fix #12 — Multi-backtick inline code spans

## Double-backtick spans

Plain inline code: `simple` works as before.

Span containing a backtick: ``code with ` inside`` should render as a single
inline code span whose body is `code with ` inside`.

Two ticks then content with a single tick: ``a`b`` — body is `a`b`.

## Triple-backtick inline (mid-paragraph)

A run that contains double-backtick: this is ```code with `` inside``` and the
sentence continues afterwards.

## Fenced block still works

```rust
fn main() {
    let s = `template`;
    println!("hi");
}
```

The fence above must render as a multi-line code block (not an inline span)
because the opener is alone on its own line.

## Unclosed inline span gracefully renders

``never closes — should still produce some Code token, not crash.