# AoC'19 Puzzle Description HTML `` Fragment to Markdown Converter
[![Crates.io](https://img.shields.io/crates/v/aoc-puzzle-desc-md.svg)](https://crates.io/crates/aoc-puzzle-desc-md)
Convert [AoC'19 Puzzle Description HTML fragments](https://github.com/ctsrc/html-fragments-aoc-2019)
to Markdown.
See also: [Advent of Code 2019 Solutions](https://github.com/ctsrc/aoc-2019).
## Usage
Markdown output is written to stdout. Use shell redirection features to write or append the output to a file.
### Output plain Markdown
```bash
aoc-puzzle-desc-md path/to/fragment.htm
```
or via cargo
```bash
cargo run -- path/to/fragment.htm
```
### Output Markdown with Rust docstring prefixes on every line
```bash
aoc-puzzle-desc-md --docstring-format path/to/fragment.htm
```
or via cargo
```bash
cargo run -- --docstring-format path/to/fragment.htm
```