From 83ea5be9a21faa7d9b4167e45f9ba12900356c59 Mon Sep 17 00:00:00 2001 From: Wu Jian Gang Date: Wed, 28 Sep 2016 13:53:38 +0800 Subject: [PATCH] components/expat: just change format of expat.rst preview will be better. --- components/expat/expat.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/expat/expat.rst b/components/expat/expat.rst index 75c6bcaf8..9e681229e 100644 --- a/components/expat/expat.rst +++ b/components/expat/expat.rst @@ -1,21 +1,21 @@ The Expat XML Parse Instruction ============================= - + Expat is an XML parser library written in C which be used for parse XML documents. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document. - + It can parse some larger files. - + - Expat XML Parser support many different processor, but for the most part function you only need the following functions: - *XML_ParserCreate:* Create a new parser object + **XML_ParserCreate**: Create a new parser object - *XML_SetElementHandler:* Set handlers for start and end tags + **XML_SetElementHandler**: Set handlers for start and end tags - *XML_SetCharacterDataHandler:* Set handler for text + **XML_SetCharacterDataHandler**: Set handler for text - *XML_Parse:* Pass a buffer full of document to the parser + **XML_Parse**: Pass a buffer full of document to the parser More information about Expat library can be found on http://expat.sourceforge.net