Hey there!
I’m running into multiple issues that I can’t seem to wrap my head around, and would love a fresh set of eyes on them.
I have a field called casting_time
in tiddlers describing magic spells.
This field holds something that usually contains a time described using syntax of the form “1s” for 1 second, “1m” for one minute, “10h” for 10 hours, etc.
Sometimes, the field also has extra information, in which case it would be written like “1s, extra information”. This extra information can have <<macro>>
calls in it.
I’m writing a macro called timeparse
to parse the field, in order to display it with extra styling on the portions that actually are times, and this macro uses another macro called time
.
The time macro below:
\define time(value)
<$macrocall $name=entity icon=time value="$value$"/>
\end
which calls for the entity
macro below to do some styling:
\define entity(icon, label, value)
<div class="mark" title="$icon$ $value$"><span class="label entity clean"><span class="icon-$icon$">$label$</span></span><span class="data entity clean">$value$</span></div>
\end
The timeparse
macro I’ve written like this for now:
\define timeparse(value)
<$list filter="[[$value$]split[ ]]" variable="seg">
<% if [<seg>regexp[\d+[smhj],]] %>
<$let segm={{{ [<seg>removesuffix[,]] }}}>
<$macrocall $name="time" value=<segm>/>,
</$let>
<% elseif [<seg>regexp[\d+[smhj]$]] %>
<$macrocall $name="time" value="{{{ [<seg>] }}}"/>
<% else %>
<<seg>>
<% endif %>
</$list>
\end
When I call <<timeparse {{!!casting_time}}>>
, there are a couple of issues in that timeparse
macro:
- The list
split[ ]
operator at the very beginning of thetimeparse
macro doesn’t work; it keeps the whole content of thecasting_time
field as is, rather than splitting it by space characters. - I’ve tried so many different things to zero in on bugs (using debug lines I haven’t reproduced above) that I’ve written the value parameter in different ways that are bound to be incorrect.
I won’t be able to wrap my head around the second issue until I figure out the first one, but clearer heads could very well prevail on it ;p