markdown.awk/README.md

37 lines
740 B
Markdown
Raw Normal View History

2021-06-27 18:06:41 +00:00
# A markdown-to-html in pure awk
This awk script reads markdown files and generates html from them.
Compared to other implementations of markdown in awk, it tries to do the right thing most of the time.
You can use `markdown.awk` to generate html pages from your plaintext notes, or send html emails with mutt.
**This is a work in progress**
## Usage
You can try it out by converting this readme to html:
```
awk -f markdown.awk README.md
```
2021-07-25 16:58:39 +00:00
## Features
Here's a list of supported markdown primitives
- Headers
- Paragraphs
- Text formatting: bold/italic
2021-07-25 16:58:39 +00:00
- Code blocks
- Blockquotes
- Lists, both bulleted and numbered
- Inline html (partial)
2021-07-26 20:57:07 +00:00
- Links
2021-07-29 22:13:25 +00:00
- Images
2022-03-13 01:29:25 +00:00
- Tables
2021-07-25 16:58:39 +00:00
2021-06-27 18:06:41 +00:00
## License
Distributed under the terms of the BSD License