I have been requested to create a file which will act like an XML page (expandable tree-like structure). I have been given the following requirements:
1. End user requires that the page be an xml file. No problem there, I know enough (barely) to do that.
2. Request that, if possible, I should hide the tag information. That is, instead of showing this:
<heading>Hello there!</heading>
, I should simply have it read, in that kind of situation, "Hello there!".
As far as I know, it is impossible to do this (remove the tags from the display) in XML. However, I am under the (possibly mistaken) impression that an XSL stylesheet can transform the basic xml page into something resembling ordinary html. So, basically, is there any guaranteed way, in HTML alone, to imitate the expandability of an XML page? I've searched google about it, but everything I came up with appeared to rely on either php code or javascript, and I cannot count on either of those to be present in the end user's system. So, my questions are:
A) Is it possible, using only html, to imitate this functionality?
and
B) If so, can anyone suggest a good place to discover information concerning how to do this?
Thank you for your consideration,
-EnderX