plugin-configfile.html 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <!DOCTYPE html
  2. SYSTEM "about:legacy-compat">
  3. <html lang="en-us"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta charset="UTF-8"><meta name="copyright" content="(C) Copyright 2016"><meta name="DC.rights.owner" content="(C) Copyright 2016"><meta name="DC.Type" content="reference"><meta name="description" content="The plug-in descriptor file (plugin.xml) controls all aspects of a plug-in, making each extension visible to the rest of the toolkit. The file uses pre-defined extension points to locate changes, and then integrates those changes into the core DITA-OT code."><meta name="DC.Relation" scheme="URI" content="../dev_ref/plugins-overview.html"><meta name="DC.Relation" scheme="URI" content="../dev_ref/plugin-newextensions.html"><meta name="DC.Relation" scheme="URI" content="../dev_ref/plugin-newtranstype.html"><meta name="DC.Relation" scheme="URI" content="../extension-points/all-extension-points.html"><meta name="DC.Relation" scheme="URI" content="../dev_ref/plugin-sample.html"><meta name="DC.Relation" scheme="URI" content="../extension-points/all-extension-points.html"><meta name="DC.Format" content="XHTML"><meta name="DC.Identifier" content="plugin-configfile"><meta name="DC.Language" content="en-US"><link rel="stylesheet" type="text/css" href="../css/commonltr.css"><link rel="stylesheet" type="text/css" href="../css/dita-ot-doc.css"><title>Plug-in descriptor file</title></head><body id="plugin-configfile"><header role="banner"><div class="header">
  4. <p>DITA Open Toolkit</p>
  5. <hr>
  6. </div></header><nav role="toc"><ul><li><a href="../index.html">DITA Open Toolkit 2.3</a></li><li><a href="../release-notes/index.html">Release Notes</a></li><li><a href="../getting-started/index.html">Getting Started</a></li><li><a href="../user-guide/index.html">User Guide</a></li><li><a href="../parameters/index.html">Parameter Reference</a></li><li><a href="../dev_ref/index.html">Developer Reference</a><ul><li><a href="../dev_ref/DITA-OTArchitecture.html">DITA-OT Architecture</a></li><li><a href="../dev_ref/extending-the-ot.html">Extending the DITA-OT</a></li><li><a href="../dev_ref/plugin-creating.html">Creating plug-ins</a><ul><li><a href="../dev_ref/plugins-overview.html">Overview of plug-ins</a><ul><li><a href="../dev_ref/plugin-benefits.html">Benefits of plug-ins</a></li><li class="active"><a href="../dev_ref/plugin-configfile.html">Plug-in descriptor file</a></li><li><a href="../dev_ref/plugin-dependencies.html">Plug-in dependencies</a></li></ul></li><li><a href="../dev_ref/plugin-xmlcatalog.html">Extending an XML catalog file</a></li><li><a href="../dev_ref/plugin-anttarget.html">Adding a new target to the Ant build process</a></li><li><a href="../dev_ref/plugin-antpreprocess.html">Adding an Ant target to the pre-processing pipeline</a></li><li><a href="../dev_ref/plugin-newtranstype.html">Adding a new transformation type</a></li><li><a href="../dev_ref/plugin-overridestyle.html">Overriding an XSLT-processing step</a></li><li><a href="../dev_ref/using-plugin-URI-extension.html">Referencing files from other plug-ins</a></li><li><a href="../dev_ref/plugin-addgeneratedtext.html">Modifying or adding generated text</a></li><li><a href="../dev_ref/plugin-xsltparams.html">Adding parameters to existing XSLT steps</a></li><li><a href="../dev_ref/plugin-javalib.html">Adding a Java library to the DITA-OT classpath parameter</a></li><li><a href="../dev_ref/plugin-messages.html">Adding new diagnostic messages</a></li><li><a href="../dev_ref/plugin-newextensions.html">Creating a new plug-in extension point</a></li><li><a href="../dev_ref/plugin-sample.html">Example plugin.xml file</a></li></ul></li><li><a href="../dev_ref/plugin-extension-points.html">Extension points</a></li><li><a href="../dev_ref/pdf-customization.html">Customizing PDF output</a></li><li><a href="../dev_ref/migration.html">Migrating customizations</a></li></ul></li><li><a href="../user-guide/dita-and-dita-ot-resources.html">DITA Resources</a></li></ul></nav><main role="main"><article role="article" aria-labelledby="ariaid-title1">
  7. <h1 class="title topictitle1" id="ariaid-title1">Plug-in descriptor file</h1>
  8. <div class="body refbody"><p class="shortdesc">The plug-in descriptor file (<span class="ph filepath">plugin.xml</span>) controls all aspects of a plug-in, making
  9. each extension visible to the rest of the toolkit. The file uses pre-defined extension points to locate changes, and
  10. then integrates those changes into the core DITA-OT code.</p>
  11. <section class="section"><h2 class="title sectiontitle">Plug-in identifiers</h2>
  12. <p class="p">Every DITA-OT plug-in must have a unique identifier composed of one or more dot-delimited tokens, for example,
  13. <code class="ph codeph">com.example.rss</code>. This identifier is used to identify the plug-in to the DITA-OT for
  14. installation, processing, and when determining plug-in dependencies.</p>
  15. <div class="note note note_note"><span class="note__title notetitle">Note:</span> The default DITA-OT plug-ins use a reverse domain naming convention, as in <code class="ph codeph">org.dita.html5</code>;
  16. this is strongly recommended to avoid plug-in naming conflicts.</div>
  17. <div class="p" id="plugin-configfile__tokendef">Each token can include only the following characters:
  18. <ul class="ul">
  19. <li class="li">Lower-case letters (a-z)</li>
  20. <li class="li">Upper-case letters (A-Z)</li>
  21. <li class="li">Numerals (0-9)</li>
  22. <li class="li">Underscores (_)</li>
  23. <li class="li">Hyphens (-)</li>
  24. </ul></div>
  25. </section>
  26. <section class="section"><h2 class="title sectiontitle"><code class="keyword markupname xmlelement">&lt;plugin&gt;</code></h2>
  27. <p class="p">The root element of the <span class="ph filepath">plugin.xml</span> file is <code class="keyword markupname xmlelement">&lt;plugin&gt;</code>, which has a
  28. required <code class="keyword markupname xmlatt">@id</code> attribute set to the unique plug-in identifier.</p>
  29. </section>
  30. <section class="section"><h2 class="title sectiontitle">Plug-in elements</h2>
  31. <p class="p">The <code class="keyword markupname xmlelement">&lt;plugin&gt;</code> element can contain the following child elements: </p>
  32. <dl class="dl parml">
  33. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;extension-point&gt;</code></dt>
  34. <dd class="dd pd">
  35. <p class="p">An optional element that defines a new extension point that can be used by other DITA-OT plug-ins.</p>
  36. <p class="p">The following attributes are supported:</p>
  37. <table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  38. <th class="stentry" id="plugin-configfile__stentry__1">Attribute</th>
  39. <th class="stentry" id="plugin-configfile__stentry__2">Description</th>
  40. <th class="stentry" id="plugin-configfile__stentry__3">Required?</th>
  41. </tr></thead><tbody><tr class="strow">
  42. <th scope="row" class="stentry" headers="plugin-configfile__stentry__1">id</th>
  43. <td class="stentry" headers="plugin-configfile__stentry__2 d10056e123">Extension point identifier</td>
  44. <td class="stentry" headers="plugin-configfile__stentry__3 d10056e123">Yes</td>
  45. </tr><tr class="strow">
  46. <th scope="row" class="stentry" headers="plugin-configfile__stentry__1">name</th>
  47. <td class="stentry" headers="plugin-configfile__stentry__2 d10056e135">Extension point description</td>
  48. <td class="stentry" headers="plugin-configfile__stentry__3 d10056e135">No</td>
  49. </tr></tbody></table>
  50. <p class="p" id="plugin-configfile__extension-point-ids">Like plug-in identifiers, extension point identifiers are composed of one or
  51. more dot-delimited tokens.</p>
  52. <div class="note note note_note" id="plugin-configfile__entension-point-ids-note"><span class="note__title notetitle">Note:</span> Extension point identifiers should begin with the identifier of the
  53. defining plug-in and append one or more tokens, for example, <code class="ph codeph">org.dita.example.pre</code>.</div>
  54. </dd>
  55. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;feature&gt;</code></dt>
  56. <dd class="dd pd">
  57. <p class="p">An optional element that supplies values to a DITA-OT extension point.</p>
  58. <p class="p">The following attributes are supported:</p>
  59. <table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  60. <th class="stentry" id="plugin-configfile__stentry__10">Attribute</th>
  61. <th class="stentry" id="plugin-configfile__stentry__11">Description</th>
  62. <th class="stentry" id="plugin-configfile__stentry__12">Required?</th>
  63. </tr></thead><tbody><tr class="strow">
  64. <th scope="row" class="stentry" headers="plugin-configfile__stentry__10">extension</th>
  65. <td class="stentry" headers="plugin-configfile__stentry__11 d10056e187">Identifier of the DITA-OT extension point</td>
  66. <td class="stentry" headers="plugin-configfile__stentry__12 d10056e187">Yes</td>
  67. </tr><tr class="strow">
  68. <th scope="row" class="stentry" headers="plugin-configfile__stentry__10">value</th>
  69. <td class="stentry" headers="plugin-configfile__stentry__11 d10056e199">Comma separated string value of the extension</td>
  70. <td class="stentry" headers="plugin-configfile__stentry__12 d10056e199">Either the <code class="keyword markupname xmlatt">@value</code> or <code class="keyword markupname xmlatt">@file</code> attribute must be
  71. specified</td>
  72. </tr><tr class="strow">
  73. <th scope="row" class="stentry" headers="plugin-configfile__stentry__10">file</th>
  74. <td class="stentry" headers="plugin-configfile__stentry__11 d10056e217">Name and path of a file containing data for the extension point.
  75. <p class="p">Depending on the extension point, this might be specified as an absolute path, a path relative to
  76. the <span class="ph filepath">plugin.xml</span> file, or a path relative to the DITA-OT root.</p></td>
  77. <td class="stentry" headers="plugin-configfile__stentry__12 d10056e217">Either the <code class="keyword markupname xmlatt">@value</code> or <code class="keyword markupname xmlatt">@file</code> attribute must be
  78. specified</td>
  79. </tr><tr class="strow">
  80. <th scope="row" class="stentry" headers="plugin-configfile__stentry__10">type</th>
  81. <td class="stentry" headers="plugin-configfile__stentry__11 d10056e240">Type of the <code class="keyword markupname xmlatt">@value</code> attribute</td>
  82. <td class="stentry" headers="plugin-configfile__stentry__12 d10056e240">No</td>
  83. </tr></tbody></table>
  84. <div class="p">If more than one <code class="keyword markupname xmlelement">&lt;feature&gt;</code> element supplies values to the same extension point,
  85. the values are additive. For example, the following are
  86. equivalent:<pre class="pre codeblock"><code>&lt;feature extension="org.dita.example.extension-point" value="a,b,c"/&gt;</code></pre><pre class="pre codeblock"><code>&lt;feature extension="org.dita.example.extension-point" value="a"/&gt;
  87. &lt;feature extension="org.dita.example.extension-point" value="b"/&gt;
  88. &lt;feature extension="org.dita.example.extension-point" value="c"/&gt;</code></pre></div>
  89. </dd>
  90. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;meta&gt;</code></dt>
  91. <dd class="dd pd">
  92. <p class="p">An optional element that defines metadata.</p>
  93. <p class="p">The following attributes are supported:</p>
  94. <table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  95. <th class="stentry" id="plugin-configfile__stentry__25">Attribute</th>
  96. <th class="stentry" id="plugin-configfile__stentry__26">Description</th>
  97. <th class="stentry" id="plugin-configfile__stentry__27">Required?</th>
  98. </tr></thead><tbody><tr class="strow">
  99. <th scope="row" class="stentry" headers="plugin-configfile__stentry__25">type</th>
  100. <td class="stentry" headers="plugin-configfile__stentry__26 d10056e296">Metadata name </td>
  101. <td class="stentry" headers="plugin-configfile__stentry__27 d10056e296">Yes</td>
  102. </tr><tr class="strow">
  103. <th scope="row" class="stentry" headers="plugin-configfile__stentry__25">value</th>
  104. <td class="stentry" headers="plugin-configfile__stentry__26 d10056e308">Metadata value</td>
  105. <td class="stentry" headers="plugin-configfile__stentry__27 d10056e308">Yes</td>
  106. </tr></tbody></table>
  107. </dd>
  108. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;require&gt;</code></dt>
  109. <dd class="dd pd">
  110. <p class="p">An optional element that defines plug-in dependencies.</p>
  111. <p class="p">The following attributes are supported:</p>
  112. <table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  113. <th class="stentry" id="plugin-configfile__stentry__34">Attribute</th>
  114. <th class="stentry" id="plugin-configfile__stentry__35">Description</th>
  115. <th class="stentry" id="plugin-configfile__stentry__36">Required?</th>
  116. </tr></thead><tbody><tr class="strow">
  117. <th scope="row" class="stentry" headers="plugin-configfile__stentry__34">plugin</th>
  118. <td class="stentry" headers="plugin-configfile__stentry__35 d10056e351">The identifier of the required plug-in.
  119. <p class="p">To specify alternative requirements, separate plug-in identifiers with a vertical
  120. bar.</p></td>
  121. <td class="stentry" headers="plugin-configfile__stentry__36 d10056e351">Yes</td>
  122. </tr><tr class="strow">
  123. <th scope="row" class="stentry" headers="plugin-configfile__stentry__34">importance</th>
  124. <td class="stentry" headers="plugin-configfile__stentry__35 d10056e365">Identifies whether the plug-in is <code class="ph codeph">required</code> (default) or
  125. <code class="ph codeph">optional</code>. The DITA-OT provides a warning if a required plug-in is not
  126. available.</td>
  127. <td class="stentry" headers="plugin-configfile__stentry__36 d10056e365">No</td>
  128. </tr></tbody></table>
  129. </dd>
  130. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;template&gt;</code></dt>
  131. <dd class="dd pd">
  132. <p class="p">An optional element that defines files that should be treated as templates.</p>
  133. <p class="p">Template files can be used to integrate DITA-OT extensions. Templates typically extend the default
  134. transformation-type-specific build files via <code class="keyword markupname xmlelement">&lt;dita:extension&gt;</code> elements. When the
  135. plug-in installation process runs, template files are used to recreate build files, and the specified
  136. extension points are replaced with references to the appropriate plug-ins.</p>
  137. <p class="p">The following attributes are supported: </p>
  138. <table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  139. <th class="stentry" id="plugin-configfile__stentry__43">Attribute</th>
  140. <th class="stentry" id="plugin-configfile__stentry__44">Description</th>
  141. <th class="stentry" id="plugin-configfile__stentry__45">Required?</th>
  142. </tr></thead><tbody><tr class="strow">
  143. <th scope="row" class="stentry" headers="plugin-configfile__stentry__43">file</th>
  144. <td class="stentry" headers="plugin-configfile__stentry__44 d10056e420">Name and path to the template file, relative to the <span class="ph filepath">plugin.xml</span>
  145. file</td>
  146. <td class="stentry" headers="plugin-configfile__stentry__45 d10056e420">Yes</td>
  147. </tr></tbody></table>
  148. </dd>
  149. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;transtype&gt;</code></dt>
  150. <dd class="dd pd">
  151. <p class="p">An optional element that defines a new output format (transformation type).</p>
  152. <p class="p">The following attributes are supported:</p>
  153. <table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  154. <th class="stentry" id="plugin-configfile__stentry__49">Attribute</th>
  155. <th class="stentry" id="plugin-configfile__stentry__50">Description</th>
  156. <th class="stentry" id="plugin-configfile__stentry__51">Required?</th>
  157. </tr></thead><tbody><tr class="strow">
  158. <th scope="row" class="stentry" headers="plugin-configfile__stentry__49">name</th>
  159. <td class="stentry" headers="plugin-configfile__stentry__50 d10056e467">Transformation name</td>
  160. <td class="stentry" headers="plugin-configfile__stentry__51 d10056e467">Yes</td>
  161. </tr><tr class="strow">
  162. <th scope="row" class="stentry" headers="plugin-configfile__stentry__49">desc</th>
  163. <td class="stentry" headers="plugin-configfile__stentry__50 d10056e479">Transformation type description</td>
  164. <td class="stentry" headers="plugin-configfile__stentry__51 d10056e479">No</td>
  165. </tr><tr class="strow">
  166. <th scope="row" class="stentry" headers="plugin-configfile__stentry__49">abstract</th>
  167. <td class="stentry" headers="plugin-configfile__stentry__50 d10056e491">When <span class="keyword option">true</span>, sets the transformation type as <span class="q">"abstract"</span>, meaning it can be
  168. extended by other plug-ins, but cannot be used directly.
  169. <p class="p">For example, the <code class="ph codeph">org.dita.base</code> plug-in defines an abstract <span class="q">"base"</span>
  170. transformation type that is extended by other DITA-OT plug-ins.</p></td>
  171. <td class="stentry" headers="plugin-configfile__stentry__51 d10056e491">No</td>
  172. </tr><tr class="strow">
  173. <th scope="row" class="stentry" headers="plugin-configfile__stentry__49">extends</th>
  174. <td class="stentry" headers="plugin-configfile__stentry__50 d10056e517">Specifies the name of the transformation type being extended</td>
  175. <td class="stentry" headers="plugin-configfile__stentry__51 d10056e517">No</td>
  176. </tr></tbody></table>
  177. <p class="p">The <code class="keyword markupname xmlelement">&lt;transtype&gt;</code> element may define additional parameters for the transformation
  178. type using the following child elements.</p>
  179. <dl class="dl parml">
  180. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;param&gt;</code></dt>
  181. <dd class="dd pd">An optional element that specifies a parameter for the transformation type.
  182. <p class="p">The following parameter attributes are supported:</p><table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  183. <th class="stentry" id="plugin-configfile__stentry__64">Attribute</th>
  184. <th class="stentry" id="plugin-configfile__stentry__65">Description</th>
  185. <th class="stentry" id="plugin-configfile__stentry__66">Required?</th>
  186. </tr></thead><tbody><tr class="strow">
  187. <th scope="row" class="stentry" headers="plugin-configfile__stentry__64">name</th>
  188. <td class="stentry" headers="plugin-configfile__stentry__65 d10056e562">Parameter name</td>
  189. <td class="stentry" headers="plugin-configfile__stentry__66 d10056e562">Yes</td>
  190. </tr><tr class="strow">
  191. <th scope="row" class="stentry" headers="plugin-configfile__stentry__64">desc</th>
  192. <td class="stentry" headers="plugin-configfile__stentry__65 d10056e574">Parameter description</td>
  193. <td class="stentry" headers="plugin-configfile__stentry__66 d10056e574">No</td>
  194. </tr><tr class="strow">
  195. <th scope="row" class="stentry" headers="plugin-configfile__stentry__64">type</th>
  196. <td class="stentry" headers="plugin-configfile__stentry__65 d10056e586">Parameter type (<span class="keyword option">enum</span>, <span class="keyword option">file</span>,
  197. <span class="keyword option">string</span>)</td>
  198. <td class="stentry" headers="plugin-configfile__stentry__66 d10056e586">Yes</td>
  199. </tr></tbody></table></dd>
  200. <dt class="dt pt dlterm"><code class="keyword markupname xmlelement">&lt;val&gt;</code></dt>
  201. <dd class="dd pd">A child of <code class="keyword markupname xmlelement">&lt;param&gt;</code> (when <code class="keyword markupname xmlatt">@type</code>=<span class="keyword option">enum</span>) that
  202. specifies an enumeration value.
  203. <p class="p">The following attributes are supported:</p><table class="simpletable"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><col style="width:33.33333333333333%"><thead><tr class="sthead">
  204. <th class="stentry" id="plugin-configfile__stentry__76">Attribute</th>
  205. <th class="stentry" id="plugin-configfile__stentry__77">Description</th>
  206. <th class="stentry" id="plugin-configfile__stentry__78">Required?</th>
  207. </tr></thead><tbody><tr class="strow">
  208. <th scope="row" class="stentry" headers="plugin-configfile__stentry__76">default</th>
  209. <td class="stentry" headers="plugin-configfile__stentry__77 d10056e642">When <span class="keyword option">true</span>, sets the enumeration value as the default value of the parent
  210. <code class="keyword markupname xmlelement">&lt;param&gt;</code></td>
  211. <td class="stentry" headers="plugin-configfile__stentry__78 d10056e642">Only for the default <code class="keyword markupname xmlelement">&lt;val&gt;</code></td>
  212. </tr></tbody></table></dd>
  213. </dl>
  214. </dd>
  215. </dl>
  216. <p class="p">Any extension that is not recognized by the DITA-OT is ignored. Since DITA-OT version 1.5.3, you can combine
  217. multiple extension definitions within a single <span class="ph filepath">plug-in.xml</span> file; in older versions, only
  218. the last extension definition was used. </p>
  219. </section>
  220. </div>
  221. <nav role="navigation" class="related-links"><div class="familylinks"><div class="parentlink"><strong>Parent topic:</strong> <a class="link" href="../dev_ref/plugins-overview.html" title="Plug-ins enable users to extend the functionality of the DITA-OT. This might entail adding support for specialized document types, integrating processing overrides, or defining new output transformations.">Overview of plug-ins</a></div></div><div class="linklist linklist relinfo reltasks"><strong>Related tasks</strong><br><div><a class="link" href="../dev_ref/plugin-newtranstype.html" title="Plug-ins can add an entirely new transformation type. The new transformation type can be very simple, such as an XHTML build that creates an additional control file; it also can be very complex, adding any number of new processing steps.">Adding a new transformation type</a></div></div><div class="linklist linklist relinfo relref"><strong>Related reference</strong><br><div><a class="link" href="../dev_ref/plugin-newextensions.html" title="If your plug-in needs to define its own extension point in an XML file, add the string &#34;_template&#34; to the filename before the file suffix. When the plug-in is installed, this file will be processed like the built-in DITA-OT templates.">Creating a new plug-in extension point</a></div><div><a class="link" href="../extension-points/all-extension-points.html" title="The pre-defined extension points can be used to extend the functionality of the DITA-OT. If your toolkit installation includes custom plug-ins that define additional extension points, you can add to this list by rebuilding the DITA-OT documentation.">All DITA-OT extension points</a></div><div><a class="link" href="../dev_ref/plugin-sample.html" title="The following is a sample of a plugin.xml file. This file adds support for a new set of specialized DTDs, and includes an override for the XHTML output processor.">Example plugin.xml file</a></div></div></nav></article></main></body></html>