diff options
author | pixel <pixel> | 2007-06-16 13:57:41 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-06-16 13:57:41 +0000 |
commit | 44f709cefdebe26a1e0084debd0652a44ae5b1da (patch) | |
tree | e8a65ad562a6fb8804ab39e9bcb6bd0843aae343 | |
parent | bfd3d8e43213cf1a4f8a7492ecf4a5027bb65f02 (diff) |
Changed example's output to match new rendering code.
-rw-r--r-- | lib/xmllib.lua | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/lib/xmllib.lua b/lib/xmllib.lua index 78cf551..f9ac9bf 100644 --- a/lib/xmllib.lua +++ b/lib/xmllib.lua @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: xmllib.lua,v 1.13 2007-06-16 13:44:20 pixel Exp $ */ +/* $Id: xmllib.lua,v 1.14 2007-06-16 13:57:41 pixel Exp $ */ ]]-- @@ -271,21 +271,18 @@ end result = [[ <?xml version="1.0" encoding="UTF-8"?> <html> - <head> - <title> -Test</title> - </head> - - <body bgcolor="#ffeedd"> -Normal test - <br /> - - <b> -Bold test.</b> - - <!-- Hi there... --> - - </body> + <head> + <title>Test</title> + </head> + + <body bgcolor="#ffeedd">Normal test + <br /> + + <b>Bold test.</b> + + <!-- Hi there... --> + + </body> </html> ]] |