By email:
Is there a popClip extension that will add “bullets” in front of a list of items (or dashes, numbers or similar)? I looked in the Extensions area, but didn’t find any.
Here’s a first draft:
// #popclip
// name: Markdown Bullets
// icon: symbol:list.bullet
// language: javascript
popclip.pasteText(popclip.input.text
.split('\n')
.map(line => '- ' + line)
.join('\n'));
(The above block is an extension snippet — select it then click “Install Extension” in PopClip.)