blob: 29eadbd009c294aa98e1b3a4ad6dca56d07d09b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
#!/usr/bin/env bash
#
# The buetow.org.sh static site generator
# by Paul Buetow 2021
declare -r ARG="$1"; shift
declare DATE=date
declare SED=sed
declare GREP=grep
which gdate &>/dev/null && DATE=gdate
which gsed &>/dev/null && SED=gsed
which ggrep &>/dev/null && GREP=ggrep
readonly DATE
readonly SED
readonly GREP
set -e
if [[ -n "$CONFIG_FILE_PATH" ]]; then
source "$CONFIG_FILE_PATH"
elif [[ -f ~/.config/buetow.org.conf ]]; then
source ~/.config/buetow.org.conf
else
source ./buetow.org.conf
fi
source ./packages/assert.source.sh
source ./packages/git.source.sh
source ./packages/atomfeed.source.sh
source ./packages/gemfeed.source.sh
source ./packages/generate.source.sh
source ./packages/html.source.sh
source ./packages/log.source.sh
source ./packages/md.source.sh
help () {
cat <<HELPHERE
$0's possible arguments:
--feed Generates Gemtext Atom feed and Gemfeed.
--generate Generates all known output formats (html, md, ...).
If USE_GIT=yes set, all files will be commited to git too.
If GIT_PUSH=yes is set, all content will be pushed to origin.
--test Only runs some shellcheck and unit tests.
--help Prints this retty text.
Example:
USE_GIT=yes GIT_PUSH=yes $0 --generate
HELPHERE
}
setup () {
if [ ! -d "$CONTENT_BASE_DIR" ]; then
cat <<END
The content base directory, does not exist. Run the following to create it, it
also adds some sample Gemtext content:
mkdir -p $CONTENT_BASE_DIR/{meta,md,html}
git clone --branch content-gemtext https://github.com/snonux/buetow.org $CONTENT_BASE_DIR/gemtext
rm -Rf $CONTENT_BASE_DIR/gemtext/.git
Once done, you are ready to edit the files in $CONTENT_BASE_DIR/gemtext. Every
time you want to generate other formats from Gemtext (e.g. HTML, Markdown), run
$0 --generate
again.
For a list of other available arguments run
$0 --help
Pro tip: You could make all the directories in $CONTENT_BASE_DIR separate git
repositories or branches. You can then run
USE_GIT=yes $0 --generate
so that all static files are commited to the content repositories too.
END
exit 1
fi
}
main () {
local -r arg="$1"; shift
setup
case $arg in
--test)
LOG_VERBOSE=yes
assert::shellcheck
html::test
md::test
;;
--feed)
gemfeed::generate
atomfeed::generate
;;
--generate)
gemfeed::generate
atomfeed::generate
generate::fromgmi html md
;;
--help|*)
help
;;
esac
return 0
}
main "$ARG"
exit $?
|