Skip to content

Instantly share code, notes, and snippets.

View braden-w's full-sized avatar

Braden Wong braden-w

View GitHub Profile
@braden-w
braden-w / obsidian-web-clipper.js
Last active November 29, 2022 15:45 — forked from Asseel-Naji/obsidian-web-clipper.js
Prompt_Obsidian Bookmarklet to clip pages
javascript: (function () {
/* Optional vault name */
// const vault = prompt("Vault name (leave blank for default):", "");
const vault = ""
const vaultName = vault ? "&vault=" + encodeURIComponent(`${vault}`) : ""
/* Get Title */
const title = document.title
function processTitle(fileName) {
fileName = fileName.replace(": ", " - ").replace(/[/\\?%*|"<>]/g, "-")