in my template i have this line:
emph(secondaryHeadingContent)
now I want to trim the output to a certain length. there is str.trim(), but how do it convert the content to a string? these all fail, mainly because secondaryHeadingContent is of type content, not string:
#str(emph(secondaryHeadingContent)).trim(at: 3)
#emph(secondaryHeadingContent).trim(at: 3)
#emph(secondaryHeadingContent.text.trim(at: 3))
#emph(secondaryHeadingContent.trim(at: 3)```