all repos — site @ a0f093bc43de27186141a746be5962cf5498893b

source for my site, found at icyphox.sh

bin/plaintext.sh (view raw)

 1#!/bin/sh 
 2
 3# from the pure sh bible; see: 
 4# https://github.com/dylanaraps/pure-sh-bible#get-the-base-name-of-a-file-path
 5basename() {
 6    dir=${1%${1##*[!/]}}
 7    dir=${dir##*/}
 8    dir=${dir%"$2"}
 9    base="${dir:-/}"
10}
11
12for p in pages/blog/*.md; do
13    basename "$p"
14    [ "$base" != "_index.md" ] && {
15        pandoc --quiet -s -f "markdown+gutenberg" \
16            "$p" -o "pages/txt/${base%.*}.txt"
17    }
18done
19
20cp pages/txt/*.txt build/blog/