Popularity
1.7
Stable
Activity
0.0
Stable
4
1
0

Programming language: Crystal
Tags: Markdown/Text Processors    

remarkdown alternatives and similar shards

Based on the "Markdown/Text Processors" category.
Alternatively, view remarkdown alternatives based on common mentions on social networks and blogs.

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

Add another 'Markdown/Text Processors' Shard

README

Remarkdown

Build status

This is extends of Markdown lib from Crystal Stdlib for Support Markdown GFM.

Features

  • Built on Crystal stdlib Markdown to implement like Markdown GFM.
  • space_after_headers - # Hello not #Hello
  • Add id attribute for Heading <h1 id="hello-world">Hello world</h1>.
  • strikethrough : ~~Foo~~ to <del>Foo</del>

Installation

Add this to your application's shard.yml:

dependencies:
  remarkdown:
    github: huacnlee/remarkdown

Usage

require "remarkdown"

Remarkdown.to_html("Hello **world**")