mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 10:01:39 -05:00
11 lines
256 B
Bash
Executable file
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"
|