A microservice that renders markdown(GFM) document to html, powered by NancyFx
- Sanitization
- Syntax highlighting
POST /markdown
Name | Type | Description |
---|---|---|
text | string | Required |
sanitize | bool | Default: true |
{
"text": "#Hello world\n[LinkText](http://linkpage)",
"sanitize": true
}
Status: 200 OK
Content-Type: text/html
<h1>Hello world</h1>
<p><a href="http://linkpage">LinkText</a></p>