From c67723cb5220a19191e6836e53b8d0a489c86797 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 3 Dec 2008 19:21:58 +0000 Subject: Major update. --- xml.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 55 insertions(+), 7 deletions(-) (limited to 'xml.c') diff --git a/xml.c b/xml.c index 63737563..8b4387be 100644 --- a/xml.c +++ b/xml.c @@ -31,6 +31,41 @@ static ssize_t xml_begintag(struct md_mbuf *, const struct md_args *, enum md_ns, int, const int *, const char **); +static int xml_begin(struct md_mbuf *, + const struct md_args *); +static int xml_end(struct md_mbuf *, + const struct md_args *); + + +static int +xml_begin(struct md_mbuf *mbuf, const struct md_args *args) +{ + size_t res; + + if ( ! ml_puts(mbuf, "\n", &res)) + return(0); + if ( ! ml_puts(mbuf, "", &res)) + return(0); + + return(1); +} + + +static int +xml_end(struct md_mbuf *mbuf, const struct md_args *args) +{ + size_t res; + + res = 0; + if ( ! ml_puts(mbuf, "", &res)) + return(0); + + return(1); +} + static ssize_t xml_begintag(struct md_mbuf *mbuf, const struct md_args *args, @@ -46,14 +81,20 @@ xml_begintag(struct md_mbuf *mbuf, const struct md_args *args, if ( ! ml_nputs(mbuf, "block:", 6, &res)) return(-1); break; + case (MD_NS_BODY): + if ( ! ml_nputs(mbuf, "body:", 5, &res)) + return(-1); + break; + case (MD_NS_HEAD): + if ( ! ml_nputs(mbuf, "head:", 5, &res)) + return(-1); + break; case (MD_NS_INLINE): if ( ! ml_nputs(mbuf, "inline:", 7, &res)) return(-1); break; default: - if ( ! ml_nputs(mbuf, "mbuf", 4, &res)) - return(-1); - return((ssize_t)res); + break; } if ( ! ml_nputs(mbuf, toknames[tok], @@ -81,10 +122,16 @@ xml_endtag(struct md_mbuf *mbuf, const struct md_args *args, if ( ! ml_nputs(mbuf, "inline:", 7, &res)) return(-1); break; - default: - if ( ! ml_nputs(mbuf, "mbuf", 4, &res)) + case (MD_NS_BODY): + if ( ! ml_nputs(mbuf, "body:", 5, &res)) + return(-1); + break; + case (MD_NS_HEAD): + if ( ! ml_nputs(mbuf, "head:", 5, &res)) return(-1); - return((ssize_t)res); + break; + default: + break; } if ( ! ml_nputs(mbuf, toknames[tok], @@ -116,6 +163,7 @@ md_init_xml(const struct md_args *args, struct md_mbuf *mbuf, const struct md_rbuf *rbuf) { - return(mlg_alloc(args, rbuf, mbuf, xml_begintag, xml_endtag)); + return(mlg_alloc(args, rbuf, mbuf, xml_begintag, + xml_endtag, xml_begin, xml_end)); } -- cgit