mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 09:01:39 -05:00
6 lines
248 B
Bash
Executable file
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"
|