cmark-gfm: Fast, accurate GitHub Flavored Markdown parser and renderer

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Warnings:

This package provides Haskell bindings for libcmark-gfm, the reference parser for GitHub Flavored Markdown, a fully specified variant of Markdown. It includes sources for libcmark-gfm (0.28.0) and does not require prior installation of the C library.


[Skip to Readme]

Properties

Versions 0.1.0, 0.1.1, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6
Change log changelog
Dependencies base (>=4.5 && <5.0), bytestring, ghc-prim (>=0.2), text (>=1.0 && <1.3) [details]
License BSD-3-Clause
Copyright (C) 2015--17 John MacFarlane, (C) 2017 Yuki Izumi
Author Yuki Izumi
Maintainer kivikakk@github.com
Category Text
Home page https://github.com/kivikakk/cmark-gfm-hs
Source repo head: git clone git://github.com/kivikakk/cmark-gfm-hs.git
Uploaded by kivikakk at 2017-08-07T02:37:03Z

Modules

[Index]

Flags

Automatic Flags
NameDescriptionDefault
pkgconfig

Use system libcmark-gfm via pkgconfig

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for cmark-gfm-0.1.1

[back to package description]

cmark-gfm-hs

This package provides Haskell bindings for libcmark-gfm, the reference parser for GitHub Flavored Markdown, a fully specified variant of Markdown. It includes sources for libcmark-gfm and does not require prior installation of the C library.

cmark provides the following advantages over existing Markdown libraries for Haskell:

cmark does not provide Haskell versions of the whole libcmark-gfm API, which is built around mutable cmark_node objects. Instead, it provides functions for converting CommonMark to HTML (and other formats), and a function for converting CommonMark to a Node tree that can be processed further using Haskell.

A note on security: This library does not attempt to sanitize HTML output. We recommend using xss-sanitize to filter the output, or enabling optSafe to filter out all raw HTML and potentially dangerous URLs.

A note on stability: There is a good chance the API will change significantly after this early release.