1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix formating

This commit is contained in:
shareghzadeh 2023-07-21 08:45:57 +03:30
parent f2f7de7385
commit b7970f6386

View File

@ -15,6 +15,8 @@ fn main() {
```
*/
pub fn unescape(input string) string {
mut escape_to_text := ['&amp;', '&', '&lt;', '<', '&gt;', '>', '&apos;', "'", '&quot;', '"', '&#38;', '&', '&#60;', '<', '&#62;', '>', '&#39;', "'", '&#34;', '"', '&#x26;', '&', '&#x3C;', '<', '&#x3E;', '>', '&#x27;', "'", '&#x22;', '"']
mut escape_to_text := ['&amp;', '&', '&lt;', '<', '&gt;', '>', '&apos;', "'", '&quot;', '"',
'&#38;', '&', '&#60;', '<', '&#62;', '>', '&#39;', "'", '&#34;', '"', '&#x26;', '&', '&#x3C;',
'<', '&#x3E;', '>', '&#x27;', "'", '&#x22;', '"']
return input.replace_each(escape_to_text)
}