Popularity
6.4
Stable
Activity
0.0
Stable
88
5
19
Programming language: C
License: The Unlicense
Tags:
Markdown
Markdown alternatives and similar packages
Based on the "Markdown" category.
Alternatively, view Markdown alternatives based on common mentions on social networks and blogs.
-
cmark
DISCONTINUED. 💧 Elixir NIF for cmark (C), a parser library following the CommonMark spec, a compatible implementation of Markdown. -
Pandex
Lightweight Elixir wrapper for Pandoc. Convert Markdown, CommonMark, HTML, Latex... to HTML, HTML5, opendocument, rtf, texttile, asciidoc, markdown, json and others
Nutrient - The #1 PDF SDK Library
Bad PDFs = bad UX. Slow load times, broken annotations, clunky UX frustrates users. Nutrient’s PDF SDKs gives seamless document experiences, fast rendering, annotations, real-time collaboration, 100+ features. Used by 10K+ devs, serving ~half a billion users worldwide. Explore the SDK for free.
Promo
nutrient.io

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Markdown or a related project?
Popular Comparisons
README
Markdown
A simple Elixir Markdown to HTML conversion library.
Implemented entirely as a NIF binding to the Hoedown library.
Usage
iex> Markdown.to_html "# Hello World"
"<h1>Hello World</h1>\n"
iex> Markdown.to_html "http://elixir-lang.org/", autolink: true
"<p><a href=\"http://elixir-lang.org/\">http://elixir-lang.org/</a></p>\n"
Options
:tables
- Enables Markdown Extra style tables (default:false
):fenced_code
- Enables fenced code blocks (default:false
):autolink
- Automatically turn URLs into links (default:false
)
TODO
- Use dirty schedulers when available
- Add more options to the NIF that are available in Hoedown
- ANSI renderer