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

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>;