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

SimpleCodeFile

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

コードブロックの上書きに使う情報のinterface

interface SimpleCodeFile {
content: string | string[];
filename: string;
lang?: string;
}

§Properties

§
content: string | string[]
[src]

コードブロックの中身(文字列のみ)

§
filename: string
[src]

ファイル名

§
lang?: string
[src]

コードブロック内の強調表示に使う言語名(省略時はfilenameに含まれる拡張子を使用する)