From ef14b3e1208f96c14921bc1c2faf94dbea45c5aa Mon Sep 17 00:00:00 2001 From: Atlas Cove Date: Sun, 4 Jun 2023 12:40:29 +0100 Subject: [PATCH 1/2] tape.sh: small formatting change --- tape.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tape.sh b/tape.sh index 21c2c65..8b6bcff 100755 --- a/tape.sh +++ b/tape.sh @@ -1,4 +1,6 @@ #!/bin/bash +# tape.sh +# v1r4 function inf { 1>&2 echo -e "\x1B[1;32mINF\x1B[0m: $*"; } function wrn { 1>&2 echo -e "\x1B[1;93mWRN\x1B[0m: $*"; } function err { 1>&2 echo -e "\x1B[1;31mERR\x1B[0m: $*"; } @@ -15,8 +17,8 @@ case $1 in *.org) org-ruby --translate html "$1" | sed '/^$/d;s/^\s\{1,\}//';; *.md) comrak --gfm "$1" ;; *.html) cat $1 ;; - *.s[ac]ss) err "Told to render $1, shouldn't happen"; exit 1 ;; *.sh) (inf "Running shellscript $1, I hope you know what you're doing..."; source $1 );; + *.s[ac]ss) err "Told to render $1, shouldn't happen"; exit 1 ;; *) pandoc --columns 168 -t html "$1" || echo "Skipping $i, unknown format" ;; esac From 2a28fbdd37d220213185688f6785ff8c2fe3d896 Mon Sep 17 00:00:00 2001 From: Atlas Cove Date: Sat, 29 Jul 2023 10:27:36 +0100 Subject: [PATCH 2/2] update pfiles.rb added literal html support --- pfiles.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pfiles.rb b/pfiles.rb index 70c40b8..1ef8a43 100755 --- a/pfiles.rb +++ b/pfiles.rb @@ -22,7 +22,7 @@ l=list.collect case ARGV.first when "doc" for i in l do - next if ignore.include?(i) + next if ignore.include?(i) or /\.v.html/.match?(i) if /\.(txti|org|md|html)$/.match?(i) print i print ' ' unless i==l.last