bookmarklet
scrapboxへの追加、[]を()にするようにした
これを参考に、decode -> 修正 -> encode。便利
encode時、" " -> "" になるので注意
code:js
javascript: (function () {
var title = window.prompt(
'Scrap "Scrapbox" to tkat0 (public).',
document.title.replace(""(").replace("", ")").trim()
);
if (!title) return;
var quote = window.getSelection().toString();
if (quote.trim())
lines = lines.concat(
quote.split(/\n/g).map(function (line) {
return " > " + line;
})
);
lines.push("");
var body = encodeURIComponent(lines.join("\n"));
window.open(
);
})();