Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/da-liii/libmdcpp

implementation of the Markdown markup language in CPP (library)
https://github.com/da-liii/libmdcpp

commonmark cpp markdown-parser

Last synced: about 1 month ago
JSON representation

implementation of the Markdown markup language in CPP (library)

Awesome Lists containing this project

README

        

# libmdcpp

A markdown implementation forked from [cpp-markdown](http://sourceforge.net/projects/cpp-markdown/).

It is intended for [marketo](https://github.com/sadhen/marketo).

**Note**: The implementation won't 100% support CommonMark, but aims to pass the most significant test case. If you find an important test case libmdcpp hasn't pass or a case that would make it crash, please tell me in the issues.

## Install
First of all, you need to install the dependencies. In **Debian Sid**, just
```
sudo apt-get install g++ cmake libboost-regex-dev
```

Then compile and install
```
git clone https://github.com/sadhen/libmdcpp
cd libmdcpp/
mkdir build && cd build/
# if you do not specify CMAKE_INSTALL_PREFIX
# the library will be installed in /usr/local
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
sudo make install
```

## License
MIT