Closed sjanssen2 closed 1 year ago
Do we need something like this for other characters as well? What about <
or >
?
Do we need something like this for other characters as well? What about
<
or>
?
@kmaibach you are probably right! Question remains, which characters should be escaped? I started from here https://stackoverflow.com/questions/5665231/most-efficient-way-to-escape-xml-html-in-c-string and found that '
and "
work natively, thus it is >
, <
and &
(for now?!)
Do we need something like this for other characters as well? What about
<
or>
?@kmaibach you are probably right! Question remains, which characters should be escaped? I started from here https://stackoverflow.com/questions/5665231/most-efficient-way-to-escape-xml-html-in-c-string and found that
'
and"
work natively, thus it is>
,<
and&
(for now?!)
Yes, that's what I found as well. I believe it's good for now. We can just extend this should other issues arise
Properly escape
CHAR('&')
viaCHAR('&')
for graphviz output to avoid e.g.