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# }
19 cp "$p" "pages/txt/$no_ext.txt"
20done
21
22cp pages/txt/*.txt build/txt/
23