I opened Prawn's manual page and try to use HTML formatting in PDF document. Specifically,

     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 => []})

The problem is, that the HTML tags are displayd as the HTML tags, have anyone the same problem? By the documentation the HTML tags should display a HTML property, but in fact are displayed only HTML tags.

Have anyone a tip how to fix it? I use the Prawn in the version

  * prawn (0.12.0)
  * prawnto (0.0.4)
link|improve this question

76% accept rate
feedback

2 Answers

It doesn't look like this is supposed anymore ( Prawn html formatting ) -- if you want to use HTML to make your PDF's you can use PDFKit ( https://github.com/jdpace/PDFKit ) which also supports CSS.

link|improve this answer
feedback

I have used prawn to create the pdf and if u take my opinion u dont need to use the prawnto gem with prawn in rails 3. i have just created a blog on this.check this out i have explained it from scratch on how to use prawn with the sample invoice.
http://idyllicsoftwareinc.wordpress.com/2012/01/05/creating-pdf-using-prawn-in-ruby-on-rails/

thanks

aniket

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.