show/hide this revision's text 2 using instantiate

CDATA won't help you here. If you really want to write code according to XHTML DTD/schema, you can do it, but cannot take advantage of the flexibility of Dojo markup language (DojoML). What you can do is that you define your own way to mark the widgets, like <div class="dojoButton"/> and then you instantiate them on the page load using something like:

dojo.query('div[class=dojoButton]').forEach

dojo.query('div[class=dojoButton]').instantiate(
  function(item) dijit.form.Button, {(new dijit.form.Button()).placeAt(item)
}
);

Before you do that, please have a look at this paragraph Dojo Doesn’t Validate (in the middle of the article) and this Dojo Degradability.

show/hide this revision's text 1

CDATA won't help you here. If you really want to write code according to XHTML DTD/schema, you can do it, but cannot take advantage of the flexibility of Dojo markup language (DojoML). What you can do is that you define your own way to mark the widgets, like <div class="dojoButton"/> and then you instantiate them on the page load using something like:

dojo.query('div[class=dojoButton]').forEach(
function(item) {
  (new dijit.form.Button()).placeAt(item)
} )

Before you do that, please have a look at this paragraph Dojo Doesn’t Validate (in the middle of the article).