Here is my settings in set.js. I basically don't want the H1 - H3 tags, images etc. So I deleted those lines but my markitup text area appears to not like the settings and shows up like following. I am using the textile set with a basic simple skin.
Also, is there a sprited version of the images?
mySettings = {
previewParserPath:...
I have installed RedCloth, by using the devkit. Using gem install RedCloth.
If I use plain irb, then require 'RedCloth' works fine.
But if I use rails console and do require 'RedCloth', it says it can't find file to load.
Please help.
Rails 3.0.0
RedCloth 4.2.3
...
in textile:
to add a link we do: "Link text":http://example.com
to add h1 we do: h1. Something
how do you add an h1 inside a link? like <a href="example.com"><h1>Link Text</h1></a>
...