I am following the tiddler here:
https://tiddlywiki.com/#Customizing%20EditTemplate%20field%20rendering
And I am trying to target a field named ‘category’.
This works as intended:
[regexp[category]then[$:/_/EditTemplate/fieldEditor/category]]
(targets only the field named as category)
but this does not:
[has:field[category]then[$:/_/EditTemplate/fieldEditor/category]]
Why not?
and this targets all the fields irrespective of their names:
[[category]then[$:/_/EditTemplate/fieldEditor/category]]
why?