Add strip method to ScriptVariable

This commit is contained in:
Brian Tiemann 2025-04-14 20:53:58 -04:00
parent 8aacef60a3
commit 517cdf7c34

View File

@ -80,6 +80,10 @@ class ScriptVariable:
return form_field
def strip(self):
# Necessary for template tags/filters such as markdown
...
class StringVar(ScriptVariable):
"""