sfeed

Simple RSS and Atom feed parser
git clone https://git.sinitax.com/codemadness/sfeed
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit cb286e2062e2b0c8197c85ff9355aa359fa96097
parent f6a0aabfa27e19ad57823e104db7eac1252e6f1f
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri, 27 Jun 2014 18:59:31 +0200

improve wording

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
MREADME.xml | 10++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/README.xml b/README.xml @@ -11,8 +11,8 @@ Dependencies Features -------- -- Relatively small parser suitable for embedded systems. -- Pretty simple API comparable to libexpat. +- Relatively small parser. +- Pretty simple API comparable with libexpat. Supports @@ -29,10 +29,12 @@ Supports Caveats ------- -- Internally static buffers are used, callbacks like XMLParser.xmldata can be +- Internally static buffers are used, callbacks like XMLParser.xmldata are called multiple times for the same tag if the data size is bigger than the internal buffer size (sizeof(XMLParser.data)). To differentiate between this you can use xml*start and xml*end. +- If xmlattrentity or xmldataentity is NULL it will pass the data to xmlattr + and xmldata. - No table of (HTML / XML) named entities you should handle this with the XMLParser.xmldataentity callback yourself. - The XML is not checked for errors so it will happily continue parsing invalid @@ -42,7 +44,7 @@ Caveats Interface / API --------------- -Should be straightforward, see xml.h +Should be straightforward, see xml.{c,h} and the example below. Files