在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):goldsborough/markdownpp开源软件地址(OpenSource Url):https://github.com/goldsborough/markdownpp开源编程语言(OpenSource Language):CSS 66.5%开源软件介绍(OpenSource Introduction):Markdown++Markdown++ is a first-of-its-kind Markdown solution for C++. It unifies and handles all aspects of a modern, powerful and flexible Markdown tool including:
Usage#include "markdown-parser.hpp"
int main(int argc, const char* argv[])
{
// Main interface
Markdown::Parser parser;
// Flexible key-value configuration
parser.configure("markdown-style", "solarized-dark");
// Quick and easy snippet-conversion, returns HTML as std::string
// <p><em>hello</em></p>
auto snippet = parser.snippet("*hello*");
// 65 possible styles (using highlight.js)
parser.configure("code-style", "monokai");
// Full file rendering
parser.render_file("input.md", "output.html");
} or $ markdownpp -m solarized-dark -c monokai input.md output.html DemoSee this README rendered by markdown++ with the solarized-dark markdown-theme and xcode syntax-theme here. DocumentationYou can build extensive documentation with LICENSEThis project is released under the MIT License. For more information, see the AuthorsPeter Goldsborough + cat |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论