tridactyl/scripts/newtab.md.sh
2017-11-27 18:54:39 +00:00

11 lines
256 B
Bash
Executable file

#!/bin/sh
# Combine newtab markdown and template
cd src/static
newtab="../../generated/static/newtab.html"
sed "/REPLACETHIS/,$ d" newtab.template.html > "$newtab"
marked newtab.md >> "$newtab"
sed "1,/REPLACETHIS/ d" newtab.template.html >> "$newtab"