Skip to content

Instantly share code, notes, and snippets.

@mandolyte
Created December 15, 2017 17:10
Show Gist options
  • Save mandolyte/596804a1a3d01105ec8ee6f234328a5c to your computer and use it in GitHub Desktop.
Save mandolyte/596804a1a3d01105ec8ee6f234328a5c to your computer and use it in GitHub Desktop.
$ 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