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

updateCodeBlock

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

コードブロックの中身を更新する

newCodeにSimpleCodeFileオブジェクトを渡すと、そのオブジェクトに添ってコードブロックのファイル名も書き換えます (文字列や文字列配列を渡した場合は書き換えません)。

const updateCodeBlock: (
newCode: string | string[] | SimpleCodeFile,
target: TinyCodeBlock,
) => unknown
;