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

getCodeBlocks

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

他のページ(または取得済みの行データ)のコードブロックを全て取得する

ファイル単位ではなく、コードブロック単位で返り値を生成する
そのため、同じページ内に同名のコードブロックが複数あったとしても、分けた状態で返す

const getCodeBlocks: (target: {
project: string;
title: string;
lines?: Line[];
}
, filter?: GetCodeBlocksFilter) => Promise<TinyCodeBlock[]>
;