Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

takeInternalLines

import { takeInternalLines } from "https://raw.githubusercontent.com/takker99/scrapbox-userscript-std/0.24.3/mod.ts";

Scrapbox内部の本文データの参照を取得する

scrapbox.Page.linesはdeep cloneされてしまうので、performanceの問題が発生する場合がある

なるべくデータのcloneを発生させたくない場合にこちらを使う

注意

  • 参照をそのまま返しているだけなので、中身を書き換えられてしまう。型定義で変更不能にはしてあるが、JS経由ならいくらでも操作できる
  • scrapbox.Page.linesとは違って構文解析情報が付与されない
const takeInternalLines: () => readonly BaseLine[];