現在のページのテキストを取得する
yuki_minoh.icon
タイトルを除外したページ本文を取得します
code:getText.js
export function getPageText(){
return scrapbox.Page.lines.slice(1).map(({text}) => text).join("\n");
}
//(async () => alert(await getPageText()))();