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

replaceLinks

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

指定したproject内の全てのリンクを書き換える

リンクと同一のタイトルは書き換わらないので注意

  • タイトルも書き換えたいときは/browser/mod.tsのpatch()などで書き換えること
const replaceLinks: (
project: string,
from: string,
to: string,
) => Promise<Result<number, NotFoundError | NotLoggedInError | NotMemberError>>
;