I'm writing a web app (Rails 3) that is supposed to be some sort of learning portal where you have lessons, test's, ext… Now for a lesson body I wan't to give admin an option to use some rich text editor and what's more it should have some features to edit formulas as we web-site will be all about math.
During my lifetime I've used tinyMCE (as editor), mathJax (as formula interpreter). And I'm thinking maybe it will be nice to store data in markDown and generate html on resource request instead of allowing only certain html tags.
Can this all be solved with gems? or will it be wise to add tinyMCE the hard way (without gem support) and add MathJax plugin to it? What else can you suggest?