aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/TODOs.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-02-22 23:55:06 -0300
committerEuAndreh <eu@euandre.org>2021-02-22 23:57:17 -0300
commitae8e26ef8715d379daa8f83b0cff88e1f51734f2 (patch)
tree59a27be334a5c7ee3b5f24ba651ea3b602bedc24 /aux/workflow/TODOs.sh
parentUpdate aux/guix/pinned-channels.scm, use nixfmt over ghc-nixfmt (diff)
downloadpackage-repository-ae8e26ef8715d379daa8f83b0cff88e1f51734f2.tar.gz
package-repository-ae8e26ef8715d379daa8f83b0cff88e1f51734f2.tar.xz
Update aux/guix/ and aux/workflow/
Diffstat (limited to '')
-rwxr-xr-xaux/workflow/TODOs.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/aux/workflow/TODOs.sh b/aux/workflow/TODOs.sh
index 5dbc761..00fef6f 100755
--- a/aux/workflow/TODOs.sh
+++ b/aux/workflow/TODOs.sh
@@ -7,10 +7,15 @@ export PROJECT_UC="$1"
export PROJECT="$2"
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/'
+TODOS_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 < aux/workflow/preamble.md | \
- printf '%s\n\n%s' "$(cat -)" "$(perl -pe "$REGEX" TODOs.md)" | \
+TAGS_REGEX='s/tag:([\w-]+)/<span class="tag">\1<\/span>/g'
+
+envsubst < aux/workflow/preamble.md | \
+ printf '%s\n\n%s' \
+ "$(cat -)" \
+ "$(perl -pe "$TODOS_REGEX" TODOs.md | \
+ perl -pe "$TAGS_REGEX")" | \
pandoc --toc \
--highlight-style pygments \
--toc-depth=2 \