aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-07-02 20:36:08 +0200
committerdec05eba <dec05eba@protonmail.com>2021-07-02 20:36:08 +0200
commitfd8f0358ceb43c423a4180e23fcd5b9f6201d829 (patch)
treed4edca21c5157cc354c7e080fea099fc63179d56 /README.md
parent27e448cf28cfe4ba24ab838cb6eb96711bf103a6 (diff)
Update docs
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b9315ce..97caff4 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-A small html parser written in C. The parser fixes broken html (missing end tags). The parser doesn't perform any dynamic allocations (heap) and neither copies any text, and only outputs the parsing result to a callback function rather than a dom tree.
+A small html parser written in ansi c (c89). The parser fixes broken html (missing end tags). The parser doesn't perform any dynamic allocations (heap) and neither copies any text, and only outputs the parsing result to a callback function rather than a dom tree.
This html parser can also be used to parse xml files with namespaces, such as rss feeds.
-# TODO
-Unescape html sequences in text and attribute values
+# Note
+This library does not decode html sequences in text and attribute values