Skip to content

Instantly share code, notes, and snippets.

@kdmsnr
Created May 12, 2020 12:40
Show Gist options
  • Save kdmsnr/94d2c1c4efa877de915cbb42f7b8cfea to your computer and use it in GitHub Desktop.
Save kdmsnr/94d2c1c4efa877de915cbb42f7b8cfea to your computer and use it in GitHub Desktop.
scrapbox.PopupMenu.addButton({
title: 'code',
onClick: text => {
return 'code:script\n' + text.split(/\n/).map(line => '\t' + line).join('\n');
}
});
scrapbox.PopupMenu.addButton({
title: 'table',
onClick: text => {
return 'table:table\n' +
text.split(/\n/).map(line => '\t' + line.split(/,/).join("\t") ).join('\n');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment