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

TinyCodeBlock

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

pull()から取れる情報で構成したコードブロックの最低限の情報

interface TinyCodeBlock {
bodyLines: Line[];
filename: string;
lang: string;
nextLine: Line | null;
pageInfo: {
projectName: string;
pageTitle: string;
}
;
titleLine: Line;
}

§Properties

§
bodyLines: Line[]
[src]

コードブロックの中身(タイトル行を含まない)

§
filename: string
[src]

ファイル名

§
lang: string
[src]

コードブロック内の強調表示に使う言語名

§
nextLine: Line | null
[src]

コードブロックの真下の行(無ければnull

§
pageInfo: {
projectName: string;
pageTitle: string;
}
[src]

コードブロックが存在するページの情報

§
titleLine: Line
[src]

タイトル行