Syntax

@Article <Article name> is for marking documentation sections to tell in which articale this section should be merged. You can use markdown syntax in documentation sections.

Example:


#![allow(unused)]
fn main() {
/**
 * @Article How it works
 *
 * # Title of the article
 *
 * Some text
[[~]](https://github.com/daynin/fundoc/blob/master/src/parser.rs#L34-L47)

`@FileArtcile` allows you to mark a whole file is a source of documentation for a specified
article.

Example:

```rust
/**
* @FileArticle How it works
[[~]](https://github.com/daynin/fundoc/blob/master/src/parser.rs#L54-L62)

`@Ignore` is for ignoring a marked documentation section.
[[~]](https://github.com/daynin/fundoc/blob/master/src/parser.rs#L102-L103)

}

[~]