Skip to main content
The Deno 2 Release Candidate is here
Learn more

url_changer

URL CHANGER

<a href="/aaa">To aaa</a>

Do you want to change root?

import { urlChange } from "https://deno.land/x/url_changer/mod.ts"

const result = urlChange(`<a href="/aaa">To aaa</a>`, (url: string) => {
  return "/new_root" + url
})

console.log(result)
// -> 
// <html><head></head><body><a href="/new_root/aaa">To aaa</a></body></html>