Hi y'all.
I'm using WP 2.8.2 with article2pdf 0.27; I figured out how to get the thing to link properly to my post pages (adding the following code to thecontent.php)
$gtlinkpdf=get_permalink();
<?php if($single) { ?>
| <a href="<?php echo $gtlinkpdf;?>?article2pdf=1"><img src="../images/pdf.png" /></a>
<?php } ?>
The script gets the right content, and the PDF is produced.
The problem is that every HTML bold tag is completely removed, along with the text in between - BUT if it is bold-italic, the text appears in the PDF but is only italic.
So
<b>text</b> does not print in PDF at all
and
<i><b>text</b></i> prints in the PDF as text, not text
HAs anyone experienced a similar problem? I thought perhaps it might be an issue of allowed tags, but it seems nbot.
Also, if quotes are replaced by their codes, right-single-quotes is replaced by a question mark.
Any assistance would be greatly appreciated.
Cheerio