diff options
| -rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,8 +40,8 @@ static char *html_encode(const char *s) const char *str; } esc[] = { - {.c = '<', .str = ">"}, - {.c = '>', .str = "<"}, + {.c = '>', .str = ">"}, + {.c = '<', .str = "<"}, {.c = '&', .str = "&"}, {.c = '\"', .str = """}, {.c = '\'', .str = "'"} |
