TheStandard Generalized Markup Language (SGML;ISO 8879:1986) is a standard for defining generalizedmarkup languages for documents. ISO 8879 Annex A.1 states that generalized markup is "based on twopostulates":[1]
Declarative: Markup should describe a document's structure and other attributes rather than specify the processing that needs to be performed, because it is less likely to conflict with future developments.
Rigorous: In order to allow markup to take advantage of the techniques available for processing, markup should rigorously define objects like programs anddatabases.
DocBook SGML andLinuxDoc are examples which used SGML tools.
SGML is anISO standard: "ISO 8879:1986 Information processing – Text and office systems – Standard Generalized Markup Language (SGML)", of which there are three versions:
OriginalSGML, which was accepted in October 1986, followed by a minor Technical Corrigendum.
SGML (ENR), in 1996, resulted from a Technical Corrigendum to addextended naming rules allowing arbitrary-language and -script markup.
SGML (ENR+WWW or WebSGML), in 1998, resulted from aTechnical Corrigendum to better support XML and WWW requirements.
SGML is part of a trio of enabling ISO standards forelectronic documents developed byISO/IEC JTC 1/SC 34[1][2] (ISO/IEC Joint Technical Committee 1, Subcommittee 34 – Document description and processing languages) :
SGML (ISO 8879) – Generalized markup language
SGML was reworked in 1998 intoXML, a successfulprofile of SGML. Full SGML is rarely found or used in new projects.
DSSSL (ISO/IEC 10179) – Document processing and styling language based onScheme.
DSSSL was reworked into[clarification needed] W3CXSLT andXSL-FO which use an XML syntax. Nowadays, DSSSL is rarely used in new projects apart fromLinux documentation.
SGML descended fromIBM'sGeneralized Markup Language (GML), whichCharles Goldfarb, Edward Mosher, and Raymond Lorie developed in the 1960s. Goldfarb, editor of the international standard, coined the "GML" term using their surname initials.[5] Goldfarb also wrote the definitive work on SGML syntax in "The SGML Handbook".[6] The syntax of SGML is closer to theCOCOA format.[clarification needed] As a document markup language, SGML was originally designed to enable the sharing ofmachine-readable large-project documents in government, law, and industry. Many such documents must remain readable for several decades—a long time in theinformation technology field. SGML also was extensively applied by the military, and the aerospace, technical reference, and industrial publishing industries. The advent of theXML profile has made SGML suitable for widespread application for small-scale, general-purpose use.
SGML (ENR+WWW) defines two kinds of validity. According to the revised Terms and Definitions of ISO 8879 (from the public draft[7]):
A conforming SGML document must be either a type-valid SGML document, a tag-valid SGML document, or both. Note: A user may wish to enforce additional constraints on a document, such as whether a document instance is integrally-stored or free of entity references.
Atype-valid SGML document is defined by the standard as
An SGML document in which, for each document instance, there is an associateddocument type declaration (DTD) to whose DTD that instance conforms.
Atag-valid SGML document is defined by the standard as
An SGML document, all of whose document instances are fully tagged. There need not be adocument type declaration associated with any of the instances. Note: If there is adocument type declaration, the instance can be parsed with or without reference to it.
Tag-validity was introduced in SGML (ENR+WWW) to supportXML which allows documents with no DOCTYPE declaration but which can be parsed without a grammar, or documents which have a DOCTYPE declaration that makes noXML Infoset contributions to the document. The standard calls thisfully tagged.Integrally stored reflects theXML requirement that elements end in the same entity in which they started.Reference-free reflects theHTML requirement that entity references are for special characters and do not contain markup. SGML validity commentary, especially commentary that was made before 1997 or that is unaware of SGML (ENR+WWW), coverstype-validity only.
The SGML emphasis on validity supports the requirement for generalized markup thatmarkup should be rigorous. (ISO 8879 A.1)
the Prologue, containing a DOCTYPE declaration with the variousmarkup declarations that together make aDocument Type Definition (DTD), and
the instance itself, containing one top-most element and its contents.
An SGML document may be composed from manyentities (discrete pieces of text). In SGML, the entities and element types used in the document may be specified with a DTD, the different character sets, features, delimiter sets, and keywords are specified in the SGML Declaration to create theconcrete syntax of the document.
Although full SGML allows implicit markup and some other kinds of tags, theXML specification (s4.3.1) states:
Each XML document has both a logical and a physical structure. Physically, the document is composed of units called entities. An entity may refer to other entities to cause their inclusion in the document. A document begins in a "root" or document entity. Logically, the document is composed of declarations, elements, comments, character references, andprocessing instructions, all of which are indicated in the document by explicit markup.
For introductory information on a basic, modern SGML syntax, seeXML. The following material concentrates on features not in XML and is not a comprehensive summary of SGML syntax.
SGML generalizes and supports a wide range of markup languages as found in the mid 1980s. These ranged from terseWiki-like syntaxes toRTF-like bracketed languages toHTML-like matching-tag languages. SGML did this by a relatively simple defaultreference concrete syntax augmented with a large number of optional features that could be enabled in the SGML Declaration. Not every SGML parser can necessarily process every SGML document. Because each processor'sSystem Declaration can be compared to the document'sSGML Declaration it is always possible to know whether a document is supported by a particular processor.
Many SGML features relate to markup minimization. Other features relate toconcurrent (parallel) markup (CONCUR), to linking processing attributes (LINK), and to embedding SGML documents within SGML documents (SUBDOC).
The notion of customizable features was not appropriate for Web use, so one goal ofXML was to minimize optional features. However, XML's well-formedness rules cannot support Wiki-like languages, leaving them unstandardized and difficult to integrate with non-text information systems.
SGML provides anabstract syntax that can beimplemented in many different types ofconcrete syntax. Although the markup norm is usingangle brackets as start- and end-tagdelimiters in an SGML document (per the standard-definedreference concrete syntax), it is possible to use other characters—provided a suitable concrete syntax is defined in the document'sSGML declaration.[8] For example, an SGML interpreter might be programmed to parse GML, wherein the tags are delimited with a leftcolon and a rightfull stop, and an:e prefix denotes an end tag::xmp.Hello, world:exmp.. According to the reference syntax, letter case (upper- or lower-case) is not distinguished in tag names, so the three tags<quote>,<QUOTE>, and<quOtE> are equivalent. (A concrete syntax might change this rule via the NAMECASE NAMING declarations.)
SGML has features for reducing the number of characters required to mark up a document, which must be enabled in the SGML Declaration. SGML processors need not support every available feature, thus allowing applications to tolerate many types of inadvertent markup omissions; however, SGML systems usually are intolerant of invalid structures. XML is intolerant of syntax omissions, and does not require a DTD for checking well-formedness.
Note: The OMITTAG feature is unrelated to the tagging of elements whose declared content isEMPTY as defined in the DTD:
<!ELEMENTimage-oEMPTY>
Elements defined like this have no end tag, and specifying one in the document instance would result in invalid markup. This is syntactically different fromXML empty elements in this regard.
Tags can be replaced with delimiter strings, for a terser markup, via the SHORTREF feature. This markup style is now associated withwiki markup, e.g. wherein two equals-signs (==), at the start of a line, are the "heading start-tag", and two equals signs (==) after that are the "heading end-tag".
SGML markup languages whose concrete syntax enables the SHORTTAG VALUE feature, do not require attribute values containing only alphanumeric characters to be enclosed within quotation marks—either double" " (LIT) or single' ' (LITA)—so that the previous markup example could be written:
One feature of SGML markup languages is the "presumptuous empty tagging", such that the empty end tag</> in<ITALICS>this</> "inherits" its value from the nearest previous full start tag, which, in this example, is<ITALICS> (in other words, it closes the most recently opened item). The expression is thus equivalent to<ITALICS>this</ITALICS>.
Additionally, the SHORTTAG NETENABL IMMEDNET feature allows shortening tags surrounding an empty text value, but forbids shortening full tags:
<QUOTE></QUOTE>
can be written as
<QUOTE//
wherein the firstslash ( / ) stands for the NET-enabling "start-tag close" (NESTC), and the second slash stands for the NET.NOTE: XML defines NESTC with a/, and NET with an> (angled bracket)—hence the corresponding construct in XML appears as<QUOTE/>.
The third feature is 'text on the same line', allowing a markup item to be ended with a line-end; especially useful for headings and such, requiring using either SHORTREF or DATATAG minimization. For example, if the DTD includes the following declarations:
SGML has many features that defied convenient description with the popular formalautomata theory and the contemporaryparser technology of the 1980s and the 1990s. The standard warns in Annex H:
The SGMLmodel group notation was deliberately designed to resemble theregular expression notation ofautomata theory, because automata theory provides a theoretical foundation for some aspects of the notion of conformance to a content model. No assumption should be made about the general applicability of automata to content models.
A report on an early implementation of a parser for basic SGML, the Amsterdam SGML Parser,[9] notes
the DTD-grammar in SGML must conform to a notion of unambiguity which closely resembles the LL(1) conditions
XML is described as being generally parsable like atwo-level grammar for non-validated XML and aConway-style pipeline ofcoroutines (lexer,parser, validator) for valid XML.[10] The SGML productions in the ISO standard are reported to be LL(3) or LL(4).[11] XML-class subsets are reported to be expressible using aW-grammar.[12] According to one paper,[13] probably considered at aninformation set orparse tree level rather than a character or delimiter level:
The class of documents that conform to a given SGML documentgrammar forms an LL(1) language. ... The SGML document grammars by themselves are, however, not LL(1) grammars.
The SGML standard does not define SGML with formal data structures, such asparse trees; however, an SGML document is constructed of arooted directed acyclic graph (RDAG) of physical storage units known as "entities", which is parsed into a RDAG of structural units known as "elements". The physical graph is loosely characterized as anentity tree, but entities might appear multiple times. Moreover, the structure graph is also loosely characterized as anelement tree, but the ID/IDREF markup allows arbitrary arcs.
The results of parsing can also be understood as a data tree in different notations; where the document is the root node, and entities in other notations (text, graphics) are child nodes. SGML provides apparatus for linking to and annotating external non-SGML entities.
The SGML standard describes it in terms ofmaps andrecognition modes (s9.6.1). Each entity, and each element, can have an associatednotation ordeclared content type, which determines the kinds of references and tags which will be recognized in that entity and element. Also, each element can have an associateddelimiter map (andshort reference map), which determines which characters are treated as delimiters in context. The SGML standard characterizes parsing as astate machine switching between recognition modes. During parsing, there is a stack of maps that configure thescanner, while thetokenizer relates to the recognition modes.
Parsing involves traversing the dynamically-retrieved entity graph, finding/implying tags and the element structure, and validating those tags against the grammar. An unusual aspect of SGML is that the grammar (DTD) is used both passively — torecognize lexical structures, and actively — togenerate missing structures and tags that the DTD has declared optional. End- and start- tags can be omitted, because they can be inferred. Loosely, a series of tags can be omitted only if there is a single, possible path in the grammar to imply them. It was this active use of grammars that made concrete SGML parsing difficult to formally characterize.
SGML uses the termvalidation for both recognition and generation. XML does not use the grammar (DTD) to change delimiter maps or to inform the parse modes, and does not allowtag omission; consequently, XML validation of elements is not active in the sense that SGML validation is active. SGMLwithout a DTD (e.g. simple XML), is a grammar or a language; SGMLwith a DTD is ametalanguage. SGML with an SGML declaration is, perhaps, a meta-metalanguage, since it is a metalanguage whose declaration mechanismis a metalanguage.
SGML has an abstract syntax implemented by many possible concrete syntaxes; however, this is not the same usage as in anabstract syntax tree and as in aconcrete syntax tree. In the SGML usage, a concrete syntax is a set of specific delimiters, while the abstract syntax is the set of names for the delimiters. TheXML Infoset corresponds more to the programming language notion of abstract syntax introduced byJohn McCarthy.
TheW3C XML (Extensible Markup Language) is a profile (subset) of SGML designed to ease the implementation of the parser compared to a full SGML parser, primarily for use on the World Wide Web. In addition to disabling many SGML options present in the reference syntax (such as omitting tags and nested subdocuments) XML adds a number of additional restrictions on the kinds of SGML syntax. For example, despite enabling SGML shortened tag forms, XML does not allow unclosed start or end tags. It also relied on many of the additions made by the WebSGML Annex. XML currently is more widely used than full SGML. XML has lightweightinternationalization based onUnicode. Applications of XML includeXHTML,XQuery,XSLT,XForms,XPointer,JSP,SVG,RSS,Atom,XML-RPC,RDF/XML, andSOAP.
While HTML (Hyper Text Markup Language) was developed partially independently and in parallel with SGML, its creator,Tim Berners-Lee, intended it to be an application of SGML.[citation needed] The design of HTML was therefore inspired by SGML tagging, but, since no clear expansion and parsing guidelines were established, most actual HTML documents are not valid SGML documents. Later, HTML was reformulated (version 2.0) to be more of an SGML application; however, the HTML markup language has many legacy- and exception-handling features that differ from SGML's requirements. HTML 4 is an SGML application that fully conforms to ISO 8879 – SGML.[14]
The charter for the 2006 revival of theWorld Wide Web Consortium HTML Working Group says, "the Group will not assume that an SGML parser is used for 'classic HTML'".[15] Although HTML syntax closely resembles SGML syntax with the defaultreferenceconcrete syntax,HTML5 abandons any attempt to define HTML as an SGML application, explicitly defining its own parsing rules,[16] which more closely match existing implementations and documents. It does, however, define an alternativeXHTML serialization, which conforms to XML and therefore to SGML as well.[17]
Other document markup languages are partly related to SGML and XML, but—because they cannot be parsed or validated or otherwise processed using standard SGML and XML tools—they are not considered either SGML or XML languages; theZ Format markup language for typesetting and documentation is an example.
Several modern programming languages support tags as primitive token types, or now support Unicode andregular expression pattern-matching. An example is theScala programming language.
Document markup languages defined using SGML are called "applications" by the standard; many pre-XML SGML applications were proprietary property of the organizations which developed them, and thus unavailable in the World Wide Web. The following list is of pre-XML SGML applications.
Text Encoding Initiative (TEI) is an academic consortium that designs, maintains, and develops technical standards for digital-format textual representation applications.
DocBook is a markup language originally created as an SGML application, designed for authoring technical documentation; DocBook currently is an XML application.
CALS (Continuous Acquisition and Life-cycle Support) is a US Department of Defense (DoD) initiative for electronically capturing military documents and for linking related data and information.
HyTime defines a set of hypertext-oriented element types that allow SGML document authors to build hypertext and multimedia presentations.
EDGAR (Electronic Data-Gathering, Analysis, and Retrieval) system effects automated collection, validation, indexing, acceptance, and forwarding of submissions, by companies and others, who are legally required to file data and information forms with the US Securities and Exchange Commission (SEC).
LinuxDoc. Documentation for Linux packages has used the LinuxDoc SGML DTD and Docbook XML DTD.
SP and Jade, the associated DSSSL processors, are maintained by theOpenJade project, and are common parts of Linux distributions. A general archive of SGML software and materials resides atSUNET. The original HTML parser class, in Sun System's implementation of Java, is a limited-features SGML parser, using SGML terminology and concepts.
SC34 Committee Records,Charles Babbage Institute – Collection on the development ofSGML and other standards influential in the development of current XML tools; documents include early drafts of SGML administrative materials, documentation, working group papers, and standards for computer languages.