docstrings

Crates.iodocstrings
lib.rsdocstrings
version0.1.1
sourcesrc
created_at2017-05-30 18:59:31.577905
updated_at2017-06-17 21:02:35.573085
descriptionExtract data from Markdown as used in Rust documentation strings
homepage
repositoryhttps://github.com/killercup/rust-docstrings
max_upload_size
id16940
size38,151
Martin Carton (mcarton)

documentation

https://docs.rs/docstrings

README

Markdown doc string parser

This is a proof of concept.

This Rust library can be used to extract some data from documentation formatted as described here.

Build Status Coverage Status

Rendered Documentation of master branch.

What it does

For example, given a string like this one:

Lorem ipsum

A longer description lorem ipsum dolor sit amet.

# Parameters

- `param1`: Foo
- `param2`: Bar

it will return structure like this:

DocBlock {
    teaser: "Lorem ipsum",
    description: Some("A longer description lorem ipsum dolor sit amet."),
    sections: [
        Parameters([
            ("param1", "Foo"),
            ("param2", "Bar")
        ])
    ]
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 16

cargo fmt