Popularity
6.5
Stable
Activity
0.0
Stable
85
5
20
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
💧 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
Elixir and Phoenix Application Security Platform
Replace Snyk, reCaptcha, and Cloudflare bot defense with the only application security platform built for Elixir and Phoenix.
Promo
paraxial.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