docify_clone 0.0.5

Docify allows you to live-embed at compile time pieces of code from throughout your project as rust doc examples.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This is a book

Markdown is really cool. It lets you write files that begin with a `.md` extension. With
`docify` you can enhance these files by adding dynamic embed tags such as the following:

```markdown
# Some Markdown
<!-- docify_clone::embed!("examples/samples.rs", some_random_test) -->
This is some more markdown
```

The following is the same embed from above, but live (this should show the embedded item!):

<!-- docify_clone::embed!("examples/samples.rs", some_random_test) -->

If you see code above, then it worked!