
Uses "Github flavored markdown". Specifically, code blocks are opened using ```scheme so that Github will lex and format them as Scheme code rather than generic monospace. Note: I would have used ```racket, but we are still waiting for the pygments.rb project to pull again from pygments-main -- to which I contributed a Racket lexer back in August. After pygments.rb pulls, can update this to use ```racket instead.
15 lines
378 B
Racket
15 lines
378 B
Racket
#lang racket/base
|
|
|
|
(require tests/eli-tester
|
|
"reader.rkt" "text-collect.rkt" "text-lang.rkt" "text-wrap.rkt"
|
|
"docs.rkt" "render.rkt" "xref.rkt" "markdown.rkt")
|
|
|
|
(test do (reader-tests)
|
|
do (begin/collect-tests)
|
|
do (text-lang-tests)
|
|
do (wrap-tests)
|
|
do (docs-tests)
|
|
do (render-tests)
|
|
do (xref-tests)
|
|
do (markdown-tests))
|