15

I'm using textile to generate HTML for a specific page and in the copy, there is a need for (c) to be generated without the copyright symbol. Unfortunately, textile always does it.

Is there a way in textile to escape the parsing it does to change it (I know I could put spaces on either side of the "c," but that doesn't look nice)?

p.campbell
  • 98,673
  • 67
  • 256
  • 322
jfedick
  • 1,362
  • 10
  • 17

3 Answers3

14

Also using (c) will yield (c) rather than ©.

Tyler Rinker
  • 108,132
  • 65
  • 322
  • 519
14

Using the <notextile></notextile> tags in the markdown will cause the parser to skip whatever is between those two tags. RedCloth docs

p.campbell
  • 98,673
  • 67
  • 256
  • 322
jfedick
  • 1,362
  • 10
  • 17
0

for textile:I attempted various formatting options such as == ^2^ ==, <notextile> ^2^</notextile>, notextile., notextile.., and @ ^2^ @, but none of them produced the desired result. Finally, I found that using \^2\^ correctly outputs ^2^.

heft
  • 1
  • 1