0

如何在纺织品标记中嵌入 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
4

1 回答 1

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
于 2013-07-25T19:17:29.913 回答