Wiki
Download
Manual
Eggs
API
Tests
Bugs
show
edit
history
You can edit this page using
wiki syntax
for markup.
Article contents:
[[tags: egg]] == lowdown Lowdown is a pure Chicken Scheme [[http://daringfireball.net/projects/markdown/|Markdown]] parser library. It's mostly a port of [[https://github.com/jgm/peg-markdown/|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 [[http://okmij.org/ftp/Scheme/SXML.html|SXML]] rather than a serialized HTML string. This allows for flexible post-processing of the parse result using, for example, [[sxml-transforms]]. [[toc:]] === API <procedure>(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. <procedure>(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. <procedure>(markdown-sxml->html-sxml markdown-sxml)</procedure> Turns the {{markdown-sxml}} structure as returned by {{markdown->sxml*}} into an SXML structure as returned by {{markdown->sxml}}. <procedure>(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)}}. <parameter>markdown-html-conversion-rules*</parameter> '''TODO:''' What exactly does this parameter control? === About this egg ==== Source The [[https://bitbucket.org/DerGuteMoritz/lowdown|source code is hosted at Bitbucket]]. Feel free to fork it and send pull requests there. ==== Author [[/users/moritz-heidkamp|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 [[http://wiki.call-cc.org/eggref/4/lowdown#version-history|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.
Description of your changes:
I would like to authenticate
Authentication
Username:
Password:
Spam control
What do you get when you multiply 4 by 5?