I would like to give my user's the option to nicely format their comments. I am not really looking for something super fancy, perhaps something lightweight.

There is a ton of information about markup/markdown/texttile etc. Which it the way to go in rails, performance and usability, compatibility with jquery, security being the priority?

Thanks

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Ruby/Rails has good support for both Markdown & Textile, Markdown has less features than Textile but it has better support for code comments. (it's what Stackoverflow uses)

So if you need good code support in comments, use Markdown, if you don't need that use Textile.

Markdown libraries

Textile library

link|improve this answer
no code support needed, what works best with jquery. thanks – badnaam Oct 7 '10 at 2:40
jquery will have pretty much zero impact on whatever you choose. Textile markup is richer, so I'd recommend that. – Slomojo Oct 7 '10 at 8:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.