crystal-cmark-gfm v0.7.0
CommonMarker
Crystal wrapper for cmark-gfm, GitHub's fork of the reference parser for CommonMark.
This binding is statically linked with a specific version of cmark-gfm.
cmark-gfm supports simple parsing and rendering of markdown content.
If you want more features please check cr-cmark-gfm.
Installation
-
Add the dependency to your
shard.yml
:dependencies: common_marker: github: mamantoha/crystal-cmark-gfm
-
Run
shards install
Usage
require "common_marker"
text = File.read("README.md")
extensions = ["table", "strikethrough", "autolink", "tagfilter", "tasklist"]
options = ["unsafe"]
md = CommonMarker.new(text, options: options, extensions: extensions)
html = md.to_html
Extensions
CommonMarker
initializer takes an optional third argument defining the extensions you want enabled as your CommonMark document is being processed. The documentation for these extensions are defined in this spec.
The available extensions are:
table
- This provides support for tables.strikethrough
- This provides support for strikethroughs.autolink
- This provides support for automatically converting URLs to anchor tags.tagfilter
- This escapes several "unsafe" HTML tags, causing them to not have any effect.tasklist
- This provides support for task list items.
Development
cd ext && make && cd ..
crystal ./lib/crystal_lib/src/main.cr src/lib_cmark.cr.in > ./src/lib_cmark.cr
Contributing
- Fork it (https://github.com/mamantoha/crystal-cmark-gfm/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Anton Maminov - creator and maintainer
Repository
crystal-cmark-gfm
Owner
Statistic
- 8
- 0
- 0
- 3
- 2
- 9 months ago
- June 28, 2019
License
MIT License
Links
Synced at
Thu, 07 Nov 2024 10:53:09 GMT
Languages