Ask HN: Why is XML so prevalent in describing GUI views?

2 points by vuyani ↗ HN

1 comment

[ 0.22 ms ] story [ 15.1 ms ] thread
Maybe 'cause of HTML? Depends on what framework you look at. Web tech is everywhere, so you see HTML alot. In some senses, I'd say it's more structured and readable that formats like JSON. e.g. compare:

<div id="parent"><div id="child">Hello World</div></div>

div: { id:"parent", members: { div: { id:"child", content:"Hello World" } } }