mado
Realtime Github Flavored Markdown Preview with WebSocket
Installation
Add this line to your application's Gemfile:
gem 'mado'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mado
Usage
Usage: mado [options] FILE
-p, --port=VAL Port number (default: 8080)
-a, --addr=VAL Address to bind (default: 0.0.0.0)
--debug Debug mode
When you execute the following command, HTTP server starts on http://0.0.0.0:8080
and WebSocket server starts separately.
You can check the preview of README.md
on the browser.
Preview will be refreshed immediately along with your edition.
$ mado -p 8080 README.md
NOTE
WebSocket server uses Port 8081 in spite of -p
option.
Please be careful to port conflict.
Acknowledgement
- github.css is used for Github-like Markdown preview.
Contributing
- Fork it ( https://github.com/dtan4/mado/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request