mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
7 lines
248 B
Bash
Executable file
7 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"
|