mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
7 lines
234 B
Bash
7 lines
234 B
Bash
![]() |
#!/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.
|
||
|
|
||
|
marked doc/amo.md | sed -r "s/<.?p>//g" | sed -r "s/<.?h.*>//g" | xclip -selection "clipboard"
|