formatURL
import { formatURL } from "https://raw.githubusercontent.com/takker99/scrapbox-url-customizer/0.4.3/mod.ts";
URL先のデータを使って外部リンク記法にする関数を作る
任意のURLを受け付ける
変換方法をformat
で指定できる
GM_fetch
が使えるときはweb pageのDOMを、使えないときはページタイトルを受け取れる
const formatURL: (format?: (material: Document | string, url: URL) => string) => (url: URL) => Promise<string>;