Tweak README formatting.
authorCarl Hetherington <cth@carlh.net>
Fri, 19 Jul 2019 15:00:53 +0000 (16:00 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 19 Jul 2019 15:00:53 +0000 (16:00 +0100)
README.md

index fa8300a8d85669c0764937c467a20b66315bcdf0..13b70bf9f23d58925b623194aa11d1a44a3d8a9f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,24 +6,24 @@ C++ API than libxml++ for parsing HTML.
 
 For example:
 
-    cxml::Document doc ("RootNodeName");
-    doc.read ("foo.xml");
+    cxml::Document doc("RootNodeName");
+    doc.read("foo.xml");
 
     /* Get the contents of child node <Fred>, throwing an
      * exception if it does not exist
      */
-    string s = doc.string_child ("Fred");
+    string s = doc.string_child("Fred");
 
     /* Get the contents of child node <Jim>, or 42 if it
      * does not exist
      */
-    int i = doc.optional_number_child<int> ("Jim").get_value_or (42);
+    int i = doc.optional_number_child<int>("Jim").get_value_or(42);
 
     /* Get the contents of <Roger> within <Sheila>,
      * throwing an exception if either node
      * is not present.
      */
-    double d = doc.node_child("Sheila").number_child<double> ("Roger");
+    double d = doc.node_child("Sheila").number_child<double>("Roger");
 
 For full details, see src/cxml.h