概要
ブックマークレットを使って雑にページを作成している
code:javascript
javascript:(function(){
var project='tobachi-bookmarks';
var title=window.prompt(Register to ${project},document.title);
if(!title) return;
var lines=['','['+window.location.href+' '+document.title.replace('','【').replace('','】')+']']; 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(https://scrapbox.io/${project}/+encodeURIComponent(title.trim())+'?body='+body);
})();