html-generator 0.0.4

A robust Rust library designed for transforming Markdown into SEO-optimized, accessible HTML. Featuring front matter extraction, custom header processing, table of contents generation, and performance optimization for web projects of any scale.
Documentation
# Code Syntax Highlighting

```rust
fn main() {
    println!("Hello, world!");
}

```python
def main():
    print("Hello, world!")
```

```html
<div>Hello, world!</div>
```

```markdown
---

### 8. **Inline and Reference Links**
**File Name**: `links_variety.txt`
```markdown
# Inline and Reference Links

[Inline Link](https://example.com "Inline Link Title")

[Reference Link][1]

[1]: https://example.com/reference "Reference Link Title"
```