about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/html/parser.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/html/parser.nim b/src/html/parser.nim
index 8d9c0b6f..536ba434 100644
--- a/src/html/parser.nim
+++ b/src/html/parser.nim
@@ -52,7 +52,7 @@ proc getescapecmd(buf: string, at: var int): string =
       inc i
       if not isdigit(buf[i]):
         at = i
-        return ""
+        return "&"
 
       num = hexValue(buf[i])
       inc i
@@ -63,7 +63,7 @@ proc getescapecmd(buf: string, at: var int): string =
     else: #dec
       if not isDigit(buf[i]):
         at = i
-        return ""
+        return "&"
 
       num = decValue(buf[i])
       inc i
@@ -77,7 +77,7 @@ proc getescapecmd(buf: string, at: var int): string =
     at = i
     return $(Rune(num))
   elif not isAlphaAscii(buf[i]):
-    return ""
+    return "&"
 
   var n = entityMap
   var s = ""
@@ -95,7 +95,7 @@ proc getescapecmd(buf: string, at: var int): string =
     at = i
     return n.value
 
-  return ""
+  return "&"
 
 type
   DOMParsedTag = object
b1bbe92d ^
















b1bbe92d ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60