```sh $ cargo install unidoc
$ cat example.md | unidoc $ unidoc example.md -o output.md $ unidoc input1.md input2.md input3.md -o output.md
$ unidoc --help # for more detail ```
```markdown emphasis emphasis strong strong Emphasis and Strong ~~deleted~~
inline code
```
```markdown
...
```
```markdown - one - two - three
a. with alphabets a. hogehoge
Text blocks separated with empty lines are paragraphs.
```markdown this is paragraph1. this is paragraph1. this is paragraph1.
this is paragraph2. this is paragraph2. this is paragraph2.
This is quoted. This is quoted. This is quoted. ```
`markdown
def code():
return code
```
python
def code():
return code
````
Prism.js will be used for Syntax highlight. Please check this to see language support.
markdown
| A | B | C | D |
|---|:--| :----:| --: |
| a | b | c | d |
| 1 | 2 | 3 | 4 |
```
markdown
@(./relative/another.md)
markdown
@[rust](./sample.rs)
markdown
This is inline hyperlink: [[http://example.com]].
```markdown Hyperlink as a block generates Blogcard:
{{ https://cympfh.cc/ }} ```