https://github.com/csb6/markdown
C++ Markdown parser
https://github.com/csb6/markdown
cpp cpp17 markdown markdown-parser
Last synced: about 2 months ago
JSON representation
C++ Markdown parser
- Host: GitHub
- URL: https://github.com/csb6/markdown
- Owner: csb6
- License: gpl-3.0
- Created: 2020-01-14T03:41:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-14T03:49:21.000Z (over 6 years ago)
- Last Synced: 2025-07-16T20:50:44.552Z (12 months ago)
- Topics: cpp, cpp17, markdown, markdown-parser
- Language: C++
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown
A parser for a subset of Markdown, written in C++17.
## Supports
- `
`
- `
`
- ``
- ``
- ``
- ``
- `- `
## Installation
Run `build.sh` to compile using any standards-conforming C++ compiler;
the only dependency is the standard library.
## Usage
Run `./markdown` followed by the name of the file to parse. The program
will print the resulting HTML to the standard output, which you can
easily redirect to a file. For example, `./markdown index.md > index.html`
works on most Unix-like systems.