我打开了prawn的manual页面,尝试在pdf文档中使用html格式。明确地,
pdf.table([["Just <font size='18'>some</font> <b><i>inline</i></b>", "", ""],
["<color rgb='FF00FF'>styles</color> being applied here", "", ""]],
:cell_style => { :inline_format => true }, :cell_style => {:borders => []})
问题是,html标记显示为html标记,有没有人有相同的问题?根据文档,html标记应该显示html属性,但实际上只显示html标记。
有人知道怎么修理吗?
我用这个版本的虾
* prawn (0.12.0)
* prawnto (0.0.4)
最佳答案
这看起来不再是应该的了(Prawn html formatting)——如果你想使用html来制作pdf,你可以使用pdfkit(https://github.com/jdpace/PDFKit),它也支持css。
关于html - Rails 3和Prawn-HTML格式不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8619807/