Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months ago
JSON representation
implementation of the Markdown markup language in CPP (library)
- Host: GitHub
- URL: https://github.com/da-liii/libmdcpp
- Owner: da-liii
- Created: 2014-12-28T12:18:49.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T04:43:23.000Z (over 7 years ago)
- Last Synced: 2024-08-03T11:01:29.997Z (3 months ago)
- Topics: commonmark, cpp, markdown-parser
- Language: C++
- Size: 65.4 KB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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