| Hi,
I am trying to download site pages in which have nice "print this page" button
on them. This results in there being the page copied down as well as it's
partial copy that is formatted for the print.
Print is implemented through href, see below.
Is there option I can use to avoid this behavior?
In source page the code states:
<li class="print">
<a title="Print" href="?print=true">Print</a>
</li>
While downloaded with:
$httrack -iC2 [site] -A100000 -z
It expands to:
<li class="print">
<a title="Print" href="[file_name]2888.html?print=true">Print</a>
</li>
And not surprisingly creates the linked page too. | |