summaryrefslogtreecommitdiff
path: root/publish-blog.sh
diff options
context:
space:
mode:
Diffstat (limited to 'publish-blog.sh')
-rwxr-xr-xpublish-blog.sh66
1 files changed, 0 insertions, 66 deletions
diff --git a/publish-blog.sh b/publish-blog.sh
deleted file mode 100755
index 33190b6..0000000
--- a/publish-blog.sh
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/usr/bin/env bash
-set -ex
-
-if [ $# -gt 2 ]; then
- echo "./publish-blog.sh [isodate] mds/blog/blog-file.md"
- exit 1
-fi
-
-if [ $# -lt 1 ]; then
- echo "./publish-blog.sh [isodate] mds/blog/blog-file.md"
- exit 1
-fi
-
-# Setup Dates
-
-isodate=$(date -I)
-date=$(date +"%B %d, %Y")
-if [ $# -eq 2 ]; then
- isodate=$1
- date=$(date --date="${isodate}" +"%B %d, %Y")
- in=$2
-else
- in=$1
-fi
-
-# Get Page Title
-
-title=$(head -n1 $in | sed -E 's/^[#]{1,2}[[:space:]]*(.+)[[:space:]]*$/\1/g')
-
-# File info
-path=./www/blog/${isodate}
-out=${path}/index.html
-
-# Make path
-
-mkdir -p ${path}
-
-# Compile md
-
-./compile-md.sh blog "${title}" $in $out
-
-# Update date
-
-sed -E -i "s/BLOG_DATE/${date}/" $out
-
-# Update index (if needed)
-
-index=mds/blog/blog-index.md
-
-## check if exists
-exists=0
-grep -q -c "$isodate - $title" $index || exists=$?
-
-# Doesn't exist
-if [ $exists -eq 1 ]; then
- marker="<!--NEXT-->"
- line="1. [${isodate} - ${title}](/blog/${isodate}/)"
- sed -E -i "/$marker/a $line" $index
- ./compile-md.sh page "Blog Index" $index www/blog/index.html
- ./update-feed.sh ${isodate} "${title}" $out
-else
- echo "Already exists in index - not updating"
-fi
-
-echo "Done"
-