I am using Prawn to render PDFs in my Rails app.
For some reason, though, my phone numbers are always indented on the right by 2 (?) spaces.
Can anybody tell me what I am missing here? All three values are saved as strings in my SQLite database and there are no whitespace characters that I am aware of.
The e-mail and url values are always neatly aligned to the right.
def show_sender_details
text "#{p.telephone}\n#{p.email}\n#{p.url}", :align => :right
end
Can anybody help?