Using Italics in <cfpdfform>
I'm populating a pdf using <cfpdfform> and action="populate". Then I'm using the <cfpdfformparam> tag to insert a variable, that is basically a long string concatenated with other variables, into a PDF form. My question is, how do I italicize one word within that variable that I'm inserting into the form? Here's an example:
<cfset
variables.InsertValues = "Text italicizeWord text text" & variables.anotherVariable & "text text text" />
<cfpdfformparam
name="ExampleForm" value="#variables.InsertValues#" />I've tried using <i></i> or <em></em> but that doesn't work.
Any help will be greatly appreciated.