A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()):
- Headers
- Links
- Bold
| // Copyright (c) Sergey Lyubka, 2013. | |
| // All rights reserved. | |
| // Released under the MIT license. | |
| // This program is used to embed arbitrary data into a C binary. It takes | |
| // a list of files as an input, and produces a .c data file that contains | |
| // contents of all these files as collection of char arrays. | |
| // Usage: | |
| // 1. Compile this file: | |
| // cc -o embed embed.c |
A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()):