Last active
October 26, 2015 02:35
-
-
Save Thomas-A-Reinert/ef2f967e7011cc45e48e to your computer and use it in GitHub Desktop.
Some XML-Elements named
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- xml-declaration --> | |
<root> | |
<!-- tag, rootelement --> | |
<container> I´m some content of the container Tag </container> | |
<!-- ^ opening tag ^--> <!-- ^ closing tag ^ --> | |
<!-- the <container> tag is also a child-element for the <root>-tag.. --> | |
<emptytag imanattributeyaknow="someimage.tif" /> | |
<!-- ^ tag ^ --> <!-- ^ attribute ^ --><!-- ^ value ^ --><!-- ^ selfclosing tag ^ --> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment