Created
December 15, 2017 17:10
-
-
Save mandolyte/596804a1a3d01105ec8ee6f234328a5c to your computer and use it in GitHub Desktop.
This file contains 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
$ cat test1.xml | |
<Person type="alien" thumbs="yes">here is some character data<FullName>Grace R. Emlin</FullName><!-- this is not a comment... just kidding --><Company>Example Inc.<!-- this company excels --></Company></Person> | |
$ | |
$ go run identityXform.go -i test1.xml -indent | |
<Person type="alien" thumbs="yes">here is some character data | |
<!-- this is not a comment... just kidding --> | |
<FullName>Grace R. Emlin</FullName> | |
<Company>Example Inc. | |
<!-- this company excels --></Company> | |
</Person> | |
$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment