I am an extreme XML n00b and just started my first project. But when I open the .xml file, It displays the elements as well as the text. How do I get it to just display the text?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dhml [
<!ELEMENT dhml (header, body, footer)>
<!ELEMENT header (#PCDATA)*>
<!ELEMENT body (p+)>
<!ELEMENT footer (#PCDATA)*>
<!ELEMENT p (#PCDATA)*>
]>
<dhml>
<header>Hello</header>
<body>
<p>Greetings</p>
<p>YOLO</p>
</body>
<footer>Goodbye</footer>
</dhml>