When extending XHTML for a very simple CMS, I'm wondering if I should use
<cms:include document="foo/bar" />
or
<cms:include cms:document="foo/bar" />
Given a document declared as follows:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:cms="http://spongegroup.com/ns/cms">
(basically the idea is to make a simple parser that white-lists a few XHTML tags, and adds a couple of my own).
Is the cms: prefix needed on attributes of an element that is already in the cms: namespace?