mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Add single and double quotes to escaped characters in XML output
We already escape '<', '>', and '&'. This adds the remaining two special entities in XML: '\'' and '\"'. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b693bb3fb9
commit
162b69828a
1 changed files with 6 additions and 0 deletions
|
@ -97,6 +97,12 @@ static void quote(FILE *f, const char *text)
|
||||||
case '&':
|
case '&':
|
||||||
escape = "&";
|
escape = "&";
|
||||||
break;
|
break;
|
||||||
|
case '\'':
|
||||||
|
escape = "'";
|
||||||
|
break;
|
||||||
|
case '\"':
|
||||||
|
escape = """;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
fwrite(text, (p - text - 1), 1, f);
|
fwrite(text, (p - text - 1), 1, f);
|
||||||
if (!escape)
|
if (!escape)
|
||||||
|
|
Loading…
Reference in a new issue