Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

All the Google results suck.

share|improve this question

3 Answers

up vote 11 down vote accepted

Comparison of SGML and XML is a detailed comparison note on W3.org.

share|improve this answer
4  
PS Found on Google. – eddiegroves Apr 14 '09 at 1:04

XML is a subset of SGML,which means it takes the pros that SGML has to offer. XML was designed to make parsing much easier. XML, rather than SGML, also is widely used for deriving document specifications.

more dicscussed here:

What is the difference between SGML and XML?

share|improve this answer

SGML is much harder to parse than XML as it has things like implicitly closing tags that close automatically (without specifying a closing tag).

I suspect that SGML has the features as it was more common in the 80s for humans to directly create SGML by hand (then is the case for XML today) and so these features save lots of typing. For example the OED was marked up (by hand?) in SGML in the 80s.

enter image description here

share|improve this answer
Quite true (see page 311 of the SGML handbook ;) – Javier Feb 18 at 13:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.