You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A way to remove a substring from a string. Proposed approach would be a second pipe after the filter. This way, the template explicitly states how the input string should be filtered and transformed prior to searching for the substring. This gives template authors a reliable format to match against (they can always use raw filter if they want the original string):
{{something|pascal|Something}} would remove "Something".
Hey Jake, any update on this? It would be really good if we could transform the string output for this to remove "px" on the end of numbers and also to help break up long-winded strings, such as those for Shadow into more manageable outputs. Currently Shadow for a red drop shadow as an example is:
“0px, 1px, 2px, 0px rgba(208,10,14,0.10)”
It would be good to be able to access each of these values independently and add a string on front of them.
A way to remove a substring from a string. Proposed approach would be a second pipe after the filter. This way, the template explicitly states how the input string should be filtered and transformed prior to searching for the substring. This gives template authors a reliable format to match against (they can always use
raw
filter if they want the original string):{{something|pascal|Something}}
would remove "Something".Additionally, we could take the regex-y HTML attribute selector syntax from CSS (
^
for "starts with" and$
for "ends with") and supplement with:{{something|pascal|^Something}}
only a starting instance of "Something"{{something|pascal|$Something}}
only an ending instance of "Something"The text was updated successfully, but these errors were encountered: