[go: up one dir, main page]

comrak 0.1.9

A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -ev

sudo apt-get install python3
cargo build --verbose

if [ x"$SPEC" = "xtrue" ]; then
	cd vendor/cmark-gfm/test
	python3 spec_tests.py --program=../../../target/debug/comrak
	python3 roundtrip_tests.py --program=../../../target/debug/comrak
else
	cargo test --verbose
fi