Hello,
I have a note containing the following:
let pages = dv.pages('"020 Articles"'); // dv.pages("#daily") if you use tags over folders
// Loop through pages
for (let p of pages){
dv.el("h2",p.file.name); // note title
// dv.paragraph(dv.fileLink(p.file.name,false)) // link to note
dv.el("article", await dv.io.load(p.file.path)); // note body
}
In live-preview/read mode, it shows me around 300 pages of text. However, when I try to export (pdf, docx), it only shows around 50.
Any ideas why?
Thank you, have a great day.