chickadee » lowdown

lowdown

Lowdown is a pure Chicken Scheme Markdown parser library. It's mostly a port of John MacFarlane's Markdown PEG to comparse parser combinators. Unlike the discount parser (and the original Markdown.pl for that matter) it passes all 22 tests of the MarkdownTest suite (version 1.0.3) and emits SXML rather than a serialized HTML string. This allows for flexible post-processing of the parse result using, for example, sxml-transforms.

API

(markdown->sxml #!optional (input (current-input-port)) (memoize? #t))procedure

Parses the Markdown formatted input and returns an SXML representation of the resulting HTML document. input may be a string, an input port or a list of characters.

(markdown->sxml* #!optional (input (current-input-port)) (memoize? #t))procedure

Parses the Markdown formatted input and returns an SXML representation of it. input may be a string, an input port or a list of characters.

markdown-sxml->html-sxml markdown-sxmlprocedure

Turns the markdown-sxml structure as returned by markdown->sxml* into an SXML structure as returned by markdown->sxml.

(markdown->html #!optional (input (current-input-port)) (memoize? #t))procedure

Convenience procedure which calls markdown->sxml on input and serializes the resulting HTML document to (current-output-port).

markdown-html-conversion-rules*parameter

TODO: What exactly does this parameter control?

About this egg

Source

The source code is hosted at Bitbucket. Feel free to fork it and send pull requests there.

Author

Moritz Heidkamp

Version history

2
Handle whitespace and dashes in reference labels (thanks to Vasilij Schneidermann for the patch)
1
Initial release for CHICKEN 5 (thanks to Evan Hanson for the initial patch)

For previous versions, see documentation of the CHICKEN 4 version of this egg.

License

 Copyright (c) 2018, Moritz Heidkamp
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
 
 Redistributions of source code must retain the above copyright
 notice, this list of conditions and the following disclaimer.
 
 Redistributions in binary form must reproduce the above copyright
 notice, this list of conditions and the following disclaimer in the
 documentation and/or other materials provided with the distribution.
 
 Neither the name of the author nor the names of its contributors may
 be used to endorse or promote products derived from this software
 without specific prior written permission.
 
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 OF THE POSSIBILITY OF SUCH DAMAGE.

Contents »