md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
git clone https://noulin.net/git/md4c.git
Log | Files | Refs | README | LICENSE

commit 5e9951a7062c7c997364448d647b2d941886b5a6
parent d4cf03839ab3c879d75379babdb04960c6b2267a
Author: Martin Mitas <mity@morous.org>
Date:   Mon,  3 Oct 2016 21:43:13 +0200

Merge branch 'master' of https://github.com/mity/md4c

Diffstat:
M.travis.yml | 1+
Ascripts/run-commonmark-tests.sh | 10++++++++++
2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -14,3 +14,4 @@ before_script: script: - make + - ../scripts/run-commonmark-tests.sh diff --git a/scripts/run-commonmark-tests.sh b/scripts/run-commonmark-tests.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if [ ! -d commonmark ]; then + git clone https://github.com/jgm/commonmark.git +fi + +commonmark/test/spec_tests.py -s commonmark/spec.txt -p md2html/md2html +