James King Jun 25, 2025 Found myself wanting this, came here to see if it was already suggested. My specific use case. I have an #employeesupertag with Start date and End date fields. I would like the title to be something like this: {$name} {Start date|?} → {End date|?} And if the {End date} field is empty, I would like to hide the →. Syntax-wise, something like this would seem good to me: {$name} {Start date|?} {End date| "→" ?} {End date|?} Where the {End date| "→" ?} implies that if the End date field is not empty, then show a string containing the → character.
Found myself wanting this, came here to see if it was already suggested.
My specific use case.
I have an
#employee
supertag withStart date
andEnd date
fields. I would like the title to be something like this:{$name} {Start date|?} → {End date|?}
And if the
{End date}
field is empty, I would like to hide the→
.Syntax-wise, something like this would seem good to me:
{$name} {Start date|?} {End date| "→" ?} {End date|?}
Where the
{End date| "→" ?}
implies that if theEnd date
field is not empty, then show a string containing the→
character.