An open API service indexing awesome lists of open source software.

https://github.com/mislav/remark

HTML to Markdown converter
https://github.com/mislav/remark

Last synced: 10 months ago
JSON representation

HTML to Markdown converter

Awesome Lists containing this project

README

          

Remark — HTML→Markdown tool
===========================

Remark parses HTML and delivers proper Markdown.

$ [sudo] gem install remark

Usage
-----

From command-line:

remark path/to/file.html

or by STDIN:

echo "..." | remark

You can try feeding it a document from the web:

curl -s daringfireball.net/projects/markdown/basics | remark > result.markdown

See how it does.

If you've cloned the repository, invoke the binary like this:

ruby -Ilib -rubygems bin/remark spec/sample.html

And this is how you use it from Ruby code:

Remark.new('

My document

Some content

').to_markdown