如何在纺织品标记中嵌入ruby代码?
这是我正在使用的一个例子:
doc = RedCloth.new <<-EOD
h1. Images
"backward":[choose previous image...1.png] "forward":[choose next image...3.png]
!http://www.w3.org/Icons/valid-html401!:http://validator.w3.org/check?uri=referer
EOD
答案 0 :(得分:0)
以下应该有效:
doc = RedCloth.new <<-EOD
#{h1. Images}
#{"backward":[choose previous image...1.png]} #{"forward":[choose next image...3.png]}
#{!http://www.w3.org/Icons/valid-html401!:http://validator.w3.org/check?uri=referer}
EOD