Hello,
What’s the markdown gem?
The Markdown Engine Wrapper (markdown) Ruby gem lets you use your
markdown library of choice. Preconfigured markdown libraries include
kramdown, redcarpet, bluecloth, maruku and others.
Usage in Ruby Code:
require ‘markdown’
Markdown.new( ‘Hello World’ ).to_html
=> “
Hello World
\n”What’s new?
The markdown gem now includes a built web service/server. Try the
markdown web service/HTTP API running on Heroku [1] or start your own
server issue the command:
markdown server or
markdown s
More GitHub - rubycocos/markdown: markdown tools, libraries & scripts
Cheers.