all repos — site @ 2c96d3bf60d78b27b7cd6e782789e46686d37a33

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    no_ext="${base%.*}"
15    [ "$base" != "_index.md" ] && {
16        pandoc --quiet -s -f "markdown+gutenberg" \
17            "$p" -o "pages/txt/$no_ext.txt"
18    }
19done
20
21cp pages/txt/*.txt build/blog/
22