Kramdown Web Service / HTTP JSON(P) API

Render Markdown

GET /markdown

Input:

Example: GET /markdown?text=Hello+World!

Response:

Status: 200 OK
Content-Type: text/html

<p>Hello World!<p>

Render Markdown (Babelmark2-Style)

GET /dingus

Input:

Example: GET /dingus?text=Hello+World!

Response:

Status: 200 OK
Content-Type: application/json

{
  'name': 'kramdown',
  'html': '<p>Hello World!<p>',
  'version': '1.10.0'
}