view dtd/article.dtd @ 1907:42ed974b83a5

Fixed the duplicated reference in development guide. The ngx_handle_read_event() is mentioned twice, where ngx_handle_write_event() is supposed to be.
author Vladimir Homutov <vl@nginx.com>
date Mon, 13 Feb 2017 19:36:18 +0300
parents 05761a8e38f6
children
line wrap: on
line source

<!--
  Copyright (C) Igor Sysoev
  Copyright (C) Nginx, Inc.
  -->

<!ELEMENT  article      (section+) >
<!ATTLIST  article
           name         CDATA #REQUIRED
           link         CDATA #REQUIRED
           lang         CDATA #REQUIRED
           rev          CDATA #IMPLIED
           author       CDATA #IMPLIED
           editor       CDATA #IMPLIED
           translator   CDATA #IMPLIED
           toc          (yes | no) "yes"
>

<!ENTITY % content      SYSTEM  "content.dtd" >
          %content;