in reply to Re^2: How to tokenize a RTF file and print it to another file (Update with solution)
in thread How to tokenize a RTF file and print it to another file
Hello mdavies23,
Take a look at the RTF::Writer/METHODS.
For example, from the documentation:
$h->paragraph(...); This makes the items in the list (...) into a paragraph. Basically + just a wrapper for $h->print([ \'{\par', ..., \'\pard}', ])
Hope this helps, BR
|
|---|