brief-core 0.3.0

Compiler library for the Brief markup language: lexer, parser, AST, HTML/LLM emitters, formatter, and Markdown-to-Brief converter.
Documentation
# Sample

A paragraph with **bold**, _italic_, and `code` words.

## A subheading

- one
- two
- three

1. first
2. second
3. third

> A blockquote.
> Continuing on the next line.

```rust
fn main() {
    println!("hi");
}
```

| Name | Age |
| ---- | --- |
| Ada  | 30  |
| Bob  | 25  |

See [the docs](https://example.com) for details.

The famous identity is $E = mc^2$ in inline form.

$$
\int_0^1 x \, dx = \frac{1}{2}
$$

---

End.