This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, "-") |