tridactyl/scripts/amo_text_to_clipboard.sh
2019-05-31 16:48:53 +01:00

6 lines
248 B
Bash
Executable file

#!/bin/sh
# Put the AMO flavour text in your clipboard for easy pasting.
# AMO doesn't support all HTML in markdown so we strip it out.
"$(yarn bin)/marked" doc/amo.md | sed -r "s/<.?p>//g" | sed -r "s/<.?h.*>//g" | xclip -selection "clipboard"