summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3a0d8c4..cd67ad6 100644
--- a/README.md
+++ b/README.md
@@ -9,8 +9,11 @@ int main()
{
genxWriter w = genxNew(NULL, NULL, stdout);
genxStartDocSender(w, &stdioSender);
- genxStartElementLiteral(w, (utf8)"http://example.org/1", (utf8)"greeting");
- genxAddAttributeLiteral(w, (utf8)"http://example.com/2", (utf8)"type", (utf8)"well-formed");
+ genxStartElementLiteral(w, (utf8)"http://example.org/1",
+ (utf8)"greeting");
+ genxAddAttributeLiteral(w, (utf8)"http://example.com/2",
+ (utf8)"type",
+ (utf8)"well-formed");
genxAddText(w, (utf8)"Hello world!");
genxEndElement(w);
genxEndDocument(w);