From e6117e02b7ec274f5aed150dc9e50c15000562d9 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Wed, 20 May 2009 22:53:12 -0400 Subject: [PATCH] validation fiddling --- xml.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/xml.html b/xml.html index 8c302f0..63b6c08 100644 --- a/xml.html +++ b/xml.html @@ -155,10 +155,9 @@ mark{display:inline}

You can also use an xmlns:prefix declaration to define a namespace and associate it with a prefix. Then each element in that namespace must be explicitly declared with the prefix. -

<atom:feed xmlns:atom="http://www.w3.org/2005/Atom">  
+
<atom:feed xmlns:atom="http://www.w3.org/2005/Atom">  
   <atom:title>dive into mark</atom:title>             
-</atom:feed>
-
+</atom:feed>
  1. The feed element is in the http://www.w3.org/2005/Atom namespace.
  2. The title element is also in the http://www.w3.org/2005/Atom namespace.