What does exclamation point stand for in HTML in constructs like DOCTYPE and comments?

后端 未结 4 1555
灰色年华
灰色年华 2020-12-07 01:20

I am curious about the syntax of the doctype and comment tags...

Why the exclamation point? What is it called, what does it mean/do?

I have read through the

相关标签:
4条回答
  • 2020-12-07 01:32

    The ! is used for comments (<!-- -->) and to define the DOCTYPE (<!DOCTYPE ...>) of the HTML document. The DOCTYPE describe some characteristics of the document such as the root of the XML/XHTML/HTML file (in HTML usually is <html>), a DTD, a Public Identifier and other subset declarations.

    0 讨论(0)
  • 2020-12-07 01:34

    A <!DOCTYPE ...> is a SGML document type declaration. Its purpose is to tell an SGML parser what DTD it should use to parse the document.

    0 讨论(0)
  • 2020-12-07 01:39

    From the specification of HTML from the Cern docs:

    MDO

    Markup Declaration Open: "<!", when followed by a letter or "--" or "[", signals one of several SGML markup declarations. The only purpose it serves in HTML is to introduce comments.

    Source: http://info.cern.ch/hypertext/WWW/MarkUp/Connolly/Text.html

    0 讨论(0)
  • 2020-12-07 01:43

    In SGML, which is what HTML was nominally based on, up to and including HTML 4.01, the exclamation mark is part of the construct <!, which is the reference concrete syntax for mdo, markup declaration open. Markup declarations are not markup elements but, informally speaking, declarations relating to elements. This includes document type declaration, comment declarations, and entity declarations.

    In XML, which is what XHTML is based on, there is no general concept like that. Instead, the character pair <! just appears in some constructs, with no uniform theory.

    In HTML5, the HTML syntax has been defined very much in an ad hoc manner, and the doctype string is called just the doctype string – it has no role and no meaning beyond the expected effect of triggering “standards mode” (or “no-quirks mode”) in browsers. In the XHTML syntax, it has its XML meaning.

    0 讨论(0)
提交回复
热议问题