UNPKG

527 BMarkdownView Raw
1Msee
2===
3
4`msee` is a command-line tool to read `markdown` file.
5And it's a library help your *command-line software* to output readable markdown content.
6
7Examples
8---
9
10### List
11
12* Foo: **strong**
13* Bar: `code`
14* Baz: *emphasis*
15
16### Blockquote
17
18> This is a blockquote.
19> This is the second paragraph in the blockquote.
20
21### JavaScript Highlight
22
23```javascript
24function hello(name) {
25 console.log('Hello ' + name);
26}
27hello('msee');
28```
29
30### Code Block
31
32 `raw` text...
33
34---
35
36See: [GitHub](https://github.com/firede/msee)