go
https://gyazo.com/afece4a38e3c8459c2e194e0d6c1a831
Hey there! I'm a daily writer and ornithologist :) The icon is my sketch on a male coot, one of my favorit birds living in marshes and reed beds standing at lake shores.
Write on!
User scripts
Time stamp
code:script.js
scrapbox.TimeStamp.addFormat('HH:mm on MMMM D, YYYY')
Change doulbe bytes characters to single byte ones
code:script.js
scrapbox.PopupMenu.addButton({
title: 'half-width',
onClick: text => {
return String.fromCharCode(s.charCodeAt(0) - 65248);
});
//16進数の場合
return String.fromCharCode(s.charCodeAt(0) - 0xFEE0);
});
return text;
}
})
Delete blank lines
code: script.js
scrapbox.PopupMenu.addButton({
title: 'delete blank',
onClick: text => text.split(/\n/).filter(line => !line.match(/^\s*$/)).join('\n')
})
Random jump
code: index.html
<a class="tool-btn dropdown-toggle" type="button" id="RandomJumpButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"><i class="fa fa-random"></i></a>