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
Trying to add the following HTML breaks because it picks up the width % as a template. Is there any way to make it keep the % as text like I would do with <font size=\"4\">? Sadly, passing the whole section as %STYLE% template doesn't fix the issue either.
I would suggest making the delimiter a char 3 and allowing the value to be passed in as a param to the processor. One character really limits the capability. Much more flexible. if the strings or too flexible are a concern, store them in an enum, or limit them to some set of chars like ! @ # $ % ^ & *.
I second munkerench suggestion.
My problematic html was width: 100%; height: 100%;
which was picked up as parameter "; height: 100", it took me a while to realize why the page did not behave as expected.
My solution was to use instead width: 100vw; height: 100vh; but specifying the delimiter would solve this type of problem once and for all. If a set of chars is to be used I suggest some rarely used chars like: ~ or |
Please consider it.
Trying to add the following HTML breaks because it picks up the width % as a template. Is there any way to make it keep the % as text like I would do with
<font size=\"4\">
? Sadly, passing the whole section as %STYLE% template doesn't fix the issue either.The text was updated successfully, but these errors were encountered: