Closed fbettag closed 15 years ago
I've fixed issued #1
I don't understand what "this should work too" means. What is the expected output.
I need to see exactly what HTML you expect to be output... and it would help if you could point to a reference. When I enter the example that you gave into , http://textism.com/tools/textile/index.php I get:
”(cmsadmin-link)click here”:#
"(cmsadmin-link)click here":/foo
transforms to:
Done with RedCloth (ruby textile). Syntactically it's just the logical conclusion of the textile specs.
I've updated Lift to support this construct
great! thank you!
Imported from GitHub: http://github.com/dpp/liftweb/issues/44/find
Imported from Assembla: http://www.assembla.com/spaces/liftweb/tickets/44
1# * and _. Look at the following:
scala> import net.liftweb.textile. import net.liftweb.textile.
scala> TextileParser.toHtml("foo bar") res7: scala.xml.NodeSeq =
foo __bar__
scala> TextileParser.toHtml("bar") res8: scala.xml.NodeSeq =
bar
scala> TextileParser.toHtml("bar foo") res9: scala.xml.NodeSeq =
bar *foo*
Something clearly isn't working with __ and \ ;)
2 links with classes
scala> TextileParser.toHtml(""" "(cmsadmin-link)click here":# """) res10: scala.xml.NodeSeq =
(cmsadmin-link)click here
Usually this should work too.