An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Markdown

A parser for a subset of Markdown, written in C++17.

## Supports

- `

`
- `

`
- ``
- ``
- `

    `
    - `
      `
      - `
    1. `

      ## 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.