Popularity
6.4
Stable
Activity
0.0
Stable
89
4
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
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
Promo
getstream.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