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

CodeBlock

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

一つのコードブロックを表す

interface CodeBlock {
endId: string;
indent: number;
lines: string[];
startId: string;
updated: number;
}

§Properties

§
endId: string
[src]

末尾の行のID

§
indent: number
[src]

.code-titleのindent数

§
lines: string[]
[src]

ブロック中のコード

.code-titleは含まない

予めindentは削ってある

§
startId: string
[src]

開始行のID

§
updated: number
[src]

コードブロックの最終更新日時