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
Currently, stache escapes only four of the five XML entities that need to be escaped, as it does not escape single quotes (') as '. (Alternatives include ' and ', but they aren't as widely supported on as many browsers as '.)
I originally noticed this because microstache (a fork of stache) does not escape single quotes when substituting into criterion's HTML report, which is the root cause of this bug.
Currently,
stache
escapes only four of the five XML entities that need to be escaped, as it does not escape single quotes ('
) as'
. (Alternatives include'
and'
, but they aren't as widely supported on as many browsers as'
.)I originally noticed this because
microstache
(a fork ofstache
) does not escape single quotes when substituting intocriterion
's HTML report, which is the root cause of this bug.(Credit goes to JustusAdam/mustache#28 for this idea.)
The text was updated successfully, but these errors were encountered: