tridactyl/scripts/newtab.md.sh

12 lines
256 B
Bash
Raw Normal View History

2017-11-10 13:03:08 +00:00
#!/bin/sh
# Combine newtab markdown and template
cd src/static
2017-11-27 17:01:45 +11:00
newtab="../../generated/static/newtab.html"
sed "/REPLACETHIS/,$ d" newtab.template.html > "$newtab"
marked newtab.md >> "$newtab"
sed "1,/REPLACETHIS/ d" newtab.template.html >> "$newtab"