pulldown-cmark-toc 0.1.1

Generate a table of contents from a Markdown document.
Documentation
# pulldown-cmark-toc

Generate a table of contents from a Markdown document.

## Getting started

Add the following dependency to your `Cargo.toml`.

```toml
[dependencies]
pulldown-cmark-toc = "0.1"
```

## Usage

```rust
use pulldown_cmark_toc::TableOfContents;

let text = r#"
# Heading

## Subheading

## Subheading with `code`
"#;

let toc = TableOfContents::new(text);
assert_eq!(
    toc.to_cmark(),
    r#"- [Heading](#heading)
  - [Subheading]#subheading
  - [Subheading with `code`]#subheading-with-code
"#
);
}
```

## License

Licensed under either of

- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or
   http://www.apache.org/licenses/LICENSE-2.0)
- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)

at your option.