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.

  • earmark

    Markdown parser for Elixir
  • cmark

    DISCONTINUED. 💧 Elixir NIF for cmark (C), a parser library following the CommonMark spec, a compatible implementation of Markdown.
  • 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
    Nutrient Logo
  • Pandex

    Lightweight Elixir wrapper for Pandoc. Convert Markdown, CommonMark, HTML, Latex... to HTML, HTML5, opendocument, rtf, texttile, asciidoc, markdown, json and others
  • discount

    DISCONTINUED. Elixir NIF for discount, a Markdown parser.

Do you think we are missing an alternative of Markdown or a related project?

Add another 'Markdown' Package

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