From e0c6ef2e6bc55fb9019fd090c544f22e46cf90ad Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 2 Jul 2021 18:14:06 +0300 Subject: feat: update scripts --- convert.sh | 5 +++++ deploy.sh | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100755 convert.sh diff --git a/convert.sh b/convert.sh new file mode 100755 index 0000000..fdf78e5 --- /dev/null +++ b/convert.sh @@ -0,0 +1,5 @@ +#!/bin/sh +echo Writing to ${1%.*}.html +cat "$1" \ + | sed 's/.md)/.html)/g' \ + | pandoc -s --from=gfm --to=html -c /style.css -B header.html -H icon.html -M pagetitle="Eugene's Space" --shift-heading-level-by=1 > ${1%.*}.html diff --git a/deploy.sh b/deploy.sh index 49e94d8..704bcf8 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,3 +1,4 @@ #!/bin/sh -rsync -zarv --exclude=".git" . root@eug-vs.xyz:/var/www/website +find . -type f -name '*.md' -exec ./convert.sh {} \; +rsync -zarv --exclude=".git" --exclude="*.md" . root@eug-vs.xyz:/var/www/website -- cgit v1.2.3