The PDF will include all information unique to this page.
%spidercode%
// Print Options set in localsteps/default.tcf
if(tcfdata.printoption && tcfdata.printoption.length) {
tcfdata.printoption.forEach(function(opt) {
var out = "";
if(opt.name.length && opt.path.length) {
out += '
';
}
// If scope is defined, don't output if it doesn't match the current root
// page or we're on the home page.
if (opt.scope.length &&
((tcfdata.pagebasedir && tcfdata.pagebasedir[0] &&
opt.scope.replace(/\/$/,"") !== tcfdata.pagebasedir[0]) ||
tcfdata.pagename[0] === "/index.html")) {
return;
}
print_doc(out);
});
}
%spidercode%