fix issue with url params

This commit is contained in:
2025-05-12 15:26:10 -07:00
parent 96a4cc08ae
commit a16f30aac0
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
(if-param-then-else param-name f"'{{{param-name}}}'" otherwise))
(defn get-thought-param-field [field]
#[f[ cat www/data/thought-registry | grep -P "\t{{thought}}\t" | awk -v FS=$'\t' '{{print ${(get (dict :tags "1" :file-name "2" :title "3" :date "4" :description "5") field)}}}' ]f])
#[f[ cat www/data/thought-registry | grep -P '\t{{thought}}\t'| awk -v FS=$'\t' '{{print ${(get (dict :tags "1" :file-name "2" :title "3" :date "4" :description "5") field)}}}' ]f])
(defn subshell [#* lines]
#[f[({(.join "; " lines)})]f])