diff options
Diffstat (limited to '')
-rwxr-xr-x | aux/workflow/TODOs.sh (renamed from build-aux/workflow/TODOs.sh) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/workflow/TODOs.sh b/aux/workflow/TODOs.sh index 3f9fa4b..ab45835 100755 --- a/build-aux/workflow/TODOs.sh +++ b/aux/workflow/TODOs.sh @@ -9,7 +9,7 @@ export MAILING_LIST="$3" REGEX='s/^## (TODO|DOING|WAITING|MEETING|INACTIVE|NEXT|CANCELLED|DONE) (.*) \{#(.*?)\}$/## <a href="#\3"><span class="\1">\1<\/span> \2<\/a>\n<span class="header-anchor" id="\3">#\3<\/span>\n/' -envsubst < build-aux/workflow/preamble.md | \ +envsubst < aux/workflow/preamble.md | \ printf '%s\n\n%s' "$(cat -)" "$(perl -pe "$REGEX" TODOs.md)" | \ pandoc --toc \ --highlight-style pygments \ @@ -19,5 +19,5 @@ envsubst < build-aux/workflow/preamble.md | \ --metadata lang=en \ -r markdown \ -w html \ - -H build-aux/workflow/style.css \ + -H aux/workflow/style.css \ > public/TODOs.html |