21 lines
451 B
Plaintext
21 lines
451 B
Plaintext
[% include "product_variables.osr" %]
|
|
|
|
[%js%]
|
|
const _pathIn = path.resolve(PRODUCT_ROOT + './bazar/output.html');
|
|
const product = readFile(_pathIn);
|
|
|
|
const $ = cheerio.load(product, {
|
|
xmlMode: true
|
|
});
|
|
|
|
$('a').each(function () {
|
|
$(this).attr("style", "color:#4C74B9");
|
|
})
|
|
|
|
$('table').each(function () {
|
|
$(this).attr("style", "display:table;width:auto;margin-left:auto;margin-right:auto");
|
|
})
|
|
|
|
return $.html()
|
|
[%endjs%]
|