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

UpdateCodeFileOptions

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

updateCodeFile()に使われているオプション

interface UpdateCodeFileOptions {
debug?: boolean;
insertPositionIfNotExist?: "top" | "bottom" | "notInsert";
isInsertEmptyLineInTail?: boolean;
socket?: Socket;
}

§Properties

§
debug?: boolean
[src]

trueでデバッグ出力ON

§
insertPositionIfNotExist?: "top" | "bottom" | "notInsert"
[src]

指定したファイルが存在しなかった時、新しいコードブロックをページのどの位置に配置するか

  • "notInsert"(既定):存在しなかった場合は何もしない
  • "top":ページ上部(タイトル行の真下)
  • "bottom":ページ下部
§
isInsertEmptyLineInTail?: boolean
[src]

trueの場合、コードブロック作成時に空行承り太郎(ページ末尾に必ず空行を設ける機能)を有効する(既定はtrue

§
socket?: Socket
[src]

WebSocketの通信に使うsocket