Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails and markdown and editor

Has the mark down editor been ported to a rails app? (the same one used on this SO)

What about parsing the markdown markup?

like image 985
Blankman Avatar asked Dec 09 '10 04:12

Blankman


1 Answers

Most WYSIWYG editors should be pretty easy to integrate into your app without the need for Rails-specific gems/plugins. Here's an editor that supports Markdown:

http://livepipe.net/control/textarea

You could also try WYSIHAT if you don't mind putting a little work into customizing your editor:

https://github.com/37signals/wysihat

http://www.80beans.com/blog/development/2009/10/01/introducing-wysihat-engine/

like image 139
Eric Dennis Avatar answered Oct 06 '22 03:10

Eric Dennis