chiark / gitweb /
documentation/python: use <nav> instead of <div> for the TOC.
authorVladimír Vondruš <mosra@centrum.cz>
Wed, 5 Jan 2022 19:09:04 +0000 (20:09 +0100)
committerVladimír Vondruš <mosra@centrum.cz>
Wed, 5 Jan 2022 20:56:00 +0000 (21:56 +0100)
64 files changed:
documentation/templates/python/class.html
documentation/templates/python/module.html
documentation/test_python/content/content.Class.html
documentation/test_python/content/content.ClassDocumentingItsMembers.html
documentation/test_python/content/content.ClassWithSlots.html
documentation/test_python/content/content.html
documentation/test_python/content_parse_docstrings/content_parse_docstrings.Class.html
documentation/test_python/content_parse_docstrings/content_parse_docstrings.html
documentation/test_python/inspect_all_property/inspect_all_property.html
documentation/test_python/inspect_annotations/inspect_annotations-py37+38.html
documentation/test_python/inspect_annotations/inspect_annotations.AContainer-py36-38.html
documentation/test_python/inspect_annotations/inspect_annotations.Foo.html
documentation/test_python/inspect_annotations/inspect_annotations.FooSlots.html
documentation/test_python/inspect_annotations/inspect_annotations.html
documentation/test_python/inspect_annotations/math.html
documentation/test_python/inspect_annotations/math36.html
documentation/test_python/inspect_annotations/math373.html
documentation/test_python/inspect_attrs/inspect_attrs.MyClass.html
documentation/test_python/inspect_attrs/inspect_attrs.MyClassAutoAttribs-attrs193.html
documentation/test_python/inspect_attrs/inspect_attrs.MyClassAutoAttribs.html
documentation/test_python/inspect_attrs/inspect_attrs.MySlotClass-attrs193.html
documentation/test_python/inspect_attrs/inspect_attrs.MySlotClass.html
documentation/test_python/inspect_duplicate_class/inspect_duplicate_class.html
documentation/test_python/inspect_duplicate_class/inspect_duplicate_class.sub.html
documentation/test_python/inspect_name_mapping/inspect_name_mapping.Class.html
documentation/test_python/inspect_name_mapping/inspect_name_mapping.html
documentation/test_python/inspect_name_mapping/inspect_name_mapping.submodule.html
documentation/test_python/inspect_recursive/inspect_recursive.html
documentation/test_python/inspect_string/inspect_string.DerivedException.html
documentation/test_python/inspect_string/inspect_string.Foo.html
documentation/test_python/inspect_string/inspect_string.FooSlots.html
documentation/test_python/inspect_string/inspect_string.Specials.html
documentation/test_python/inspect_string/inspect_string.html
documentation/test_python/inspect_type_links/inspect_type_links.Foo.html
documentation/test_python/inspect_type_links/inspect_type_links.first.Foo.Foo.html
documentation/test_python/inspect_type_links/inspect_type_links.first.Foo.html
documentation/test_python/inspect_type_links/inspect_type_links.first.html
documentation/test_python/inspect_type_links/inspect_type_links.first.sub.Foo.html
documentation/test_python/inspect_type_links/inspect_type_links.first.sub.html
documentation/test_python/inspect_type_links/inspect_type_links.html
documentation/test_python/inspect_type_links/inspect_type_links.second.Foo.html
documentation/test_python/inspect_type_links/inspect_type_links.second.FooSlots.html
documentation/test_python/inspect_type_links/inspect_type_links.second.FooSlotsInvalid.html
documentation/test_python/inspect_type_links/inspect_type_links.second.html
documentation/test_python/inspect_underscored/inspect_underscored.Class.html
documentation/test_python/inspect_underscored/inspect_underscored.html
documentation/test_python/inspect_value_formatting/inspect_value_formatting.html
documentation/test_python/link_formatting/c.link_formatting.Class.html
documentation/test_python/link_formatting/c.link_formatting.pybind.Foo.html
documentation/test_python/link_formatting/m.link_formatting.html
documentation/test_python/link_formatting/m.link_formatting.pybind.html
documentation/test_python/pybind_external_overload_docs/pybind_external_overload_docs.Class.html
documentation/test_python/pybind_external_overload_docs/pybind_external_overload_docs.html
documentation/test_python/pybind_name_mapping/pybind_name_mapping.Class.html
documentation/test_python/pybind_name_mapping/pybind_name_mapping.html
documentation/test_python/pybind_name_mapping/pybind_name_mapping.submodule.html
documentation/test_python/pybind_signatures/false_positives.html
documentation/test_python/pybind_signatures/pybind_signatures.MyClass.html
documentation/test_python/pybind_signatures/pybind_signatures.MyClass23.html
documentation/test_python/pybind_signatures/pybind_signatures.html
documentation/test_python/pybind_submodules/pybind_submodules.html
documentation/test_python/pybind_submodules_package/pybind_submodules_package.sub.html
documentation/test_python/pybind_type_links/pybind_type_links.Foo.html
documentation/test_python/pybind_type_links/pybind_type_links.html

index d60904511b8b27fc8b507a1877948fb4034e0207..bb0241ffbc1fd714573ea68a0c0d4590c8fcbf10 100644 (file)
@@ -21,7 +21,7 @@
         <p>{{ page.summary }}</p>
         {% endif %}
         {% if page.classes or page.classmethods or page.staticmethods or page.methods or page.dunder_methods or page.properties or page.data %}
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -54,7 +54,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         {% endif %}
         {% if page.content %}
 {{ page.content }}
index 41acfd56adc147c8bb1059f171bad18927a543a6..b892289b57540e28902b31185ef8730e523f6314 100644 (file)
@@ -20,7 +20,7 @@
         <p>{{ page.summary }}</p>
         {% endif %}
         {% if page.modules or page.classes or page.functions or page.data %}
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -44,7 +44,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         {% endif %}
         {% if page.content %}
 {{ page.content }}
index a723fbf371343851682de55241d616e4d891c0b6..c9f2e056aded9385dc65b43779b0be9b0b97e384 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="content.html">content</a>.<wbr/></span>Class <span class="m-thin">class</span>
         </h1>
         <p>This overwrites the docstring for <a class="m-doc" href="content.Class.html">Class</a>.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -38,7 +38,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p>This is detailed class docs. Here I <em>also</em> hate how it needs to be
 indented.</p>
         <section id="classmethods">
index 4f629e56bc94c26c673c5673a1de04080336224e..c28cb894974f4bdb9ad2f9c1712d0f695228c8da 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="content.html">content</a>.<wbr/></span>ClassDocumentingItsMembers <span class="m-thin">class</span>
         </h1>
         <p>This class documents its members directly in its own directive</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index c1a7947f24cd3aa67e689cc64d248a4273b04585..8d12d47be4977b3651d2ac0a33a1a16c4cb21317 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="content.html">content</a>.<wbr/></span>ClassWithSlots <span class="m-thin">class</span>
         </h1>
         <p>This class has slots and those have to be documented externally</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 3bc425082eff5dd836b67047839725e887ef32a4..2bc543098c0aac39de36e4fa40dbfdf665f9097a 100644 (file)
@@ -23,7 +23,7 @@
           content <span class="m-thin">module</span>
         </h1>
         <p>This overwrites the docstring for <a class="m-doc" href="content.html">content</a>.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -37,7 +37,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p>This is detailed module docs. I kinda <em>hate</em> how it needs to be indented,
 tho. Below is an included file to test file path is supplied somewhat
 correctly (relative to the input dir):</p>
index 864a53cb3218271f1ce6ae00cdc68b7ce2508d3c..164eacfe2bb55d37fc3b66f5bd03302e78c95d0b 100644 (file)
@@ -25,7 +25,7 @@
         <p>This class has a <em>serious</em> docstring.
 With a multi-line summary. Relative reference to <a class="m-doc" href="content_parse_docstrings.Class.html#a_property">a_property</a> works
 even from a summary.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@ even from a summary.</p>
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p>And class <strong>details</strong> as well.</p>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
index a6e895bf260b6d6edb2587a8d7c158740f8669df..f3a99e043f1ed22a638e0dee258e602955c41729 100644 (file)
@@ -23,7 +23,7 @@
           content_parse_docstrings <span class="m-thin">module</span>
         </h1>
         <p>This module has a <em>serious</em> docstring. And a <a class="m-doc" href="content_parse_docstrings.Class.html">Class</a>.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p>And module <strong>details</strong> as well.</p>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
index 0692c9030cf8f8b924cde04e5f564e41121c4db8..e7283b96833d1ab925753452c3429bd20ab8fd29 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           inspect_all_property <span class="m-thin">module</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -36,7 +36,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index a8750e3f51427ac9adf03ee123eee62825bdc0fe..c47f8b8645e5c8fccfa27e02895d99e3af45c096 100644 (file)
@@ -23,7 +23,7 @@
           inspect_annotations <span class="m-thin">module</span>
         </h1>
         <p>Annotation parsing. For links inside annotations see test_inspect.TypeLinks.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index fcc0e6e59c34bbe68f969831f95723b078a5de2e..9aa98a55233254e70be0e6db61df4bcd54375cef 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_annotations.html">inspect_annotations</a>.<wbr/></span>AContainer <span class="m-thin">class</span>
         </h1>
         <p>A generic class. No parent class info extracted yet.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index 1a2ad7b1a062de000e99ac3193b6023260ef4464..c24772576225f6ff95e1ce54833d180e6dbf6f51 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_annotations.html">inspect_annotations</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>A class with properties</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 47843142664fb15ec0dd0a7c9a2ce2c07328301c..8fff5e40f4c7d5ad8dcb4f3dc40003343adcaa2c 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_annotations.html">inspect_annotations</a>.<wbr/></span>FooSlots <span class="m-thin">class</span>
         </h1>
         <p>A class with slots</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 78e96c36c5ed3dea004307eedcbfe6277029815f..b5b454c134babc7a738f22ce690593f347fbf66b 100644 (file)
@@ -23,7 +23,7 @@
           inspect_annotations <span class="m-thin">module</span>
         </h1>
         <p>Annotation parsing. For links inside annotations see test_inspect.TypeLinks.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index 3807895087755a479bd7ddf3e7e7a111f6c1c88e..cb97c7fafec37b622d61ef025569f39ea9b45d45 100644 (file)
@@ -24,7 +24,7 @@
         </h1>
         <p>This module provides access to the mathematical functions
 defined by the C standard.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@ defined by the C standard.</p>
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="functions">
           <h2><a href="#functions">Functions</a></h2>
           <dl class="m-doc">
index 333792b0cdadcb6179dc556f01cc68c4b57010c1..7301a2160211dbe52f66c4d45a77cee2598b4dcc 100644 (file)
@@ -24,7 +24,7 @@
         </h1>
         <p>This module is always available.  It provides access to the
 mathematical functions defined by the C standard.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@ mathematical functions defined by the C standard.</p>
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="functions">
           <h2><a href="#functions">Functions</a></h2>
           <dl class="m-doc">
index 660b6ce636c07c05730074ac36b39a6b39f5c8f4..226e28edc8bc33d98dabcbbe742efff4f6a04725 100644 (file)
@@ -24,7 +24,7 @@
         </h1>
         <p>This module is always available.  It provides access to the
 mathematical functions defined by the C standard.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@ mathematical functions defined by the C standard.</p>
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="functions">
           <h2><a href="#functions">Functions</a></h2>
           <dl class="m-doc">
index dc298f8d8eb9b13bc02531f4bd1a069667f98c0c..4077325e4c33b55d5c7a722a4726a0a71e4d3d59 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_attrs.html">inspect_attrs</a>.<wbr/></span>MyClass <span class="m-thin">class</span>
         </h1>
         <p>A class with attr-defined properties</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index e2c23002d8ae4c87482eea09c77a33a27bdd8b7c..9739d2bbd0e20b214ac3027cfa7a5f0ed7d18d81 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_attrs.html">inspect_attrs</a>.<wbr/></span>MyClassAutoAttribs <span class="m-thin">class</span>
         </h1>
         <p>A class with automatic attr-defined properties</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index bf951880eb607512b316dbbe60285bb2a668b556..41fd8730b9785221efc99888bc80696af6f2107c 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_attrs.html">inspect_attrs</a>.<wbr/></span>MyClassAutoAttribs <span class="m-thin">class</span>
         </h1>
         <p>A class with automatic attr-defined properties</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index bfc0571cbeb889dff6c96ae61d5485bedd62d76d..5056f3d84ee9ab45c5fef0ed66f28d39cf0475eb 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_attrs.html">inspect_attrs</a>.<wbr/></span>MySlotClass <span class="m-thin">class</span>
         </h1>
         <p>A class with attr-defined slots</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index eb8b3fca5c98093d73fbbcca75b1bbbf92011a9c..97f438dc97d9a150aef4c1a26fffcef59ecd6a80 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_attrs.html">inspect_attrs</a>.<wbr/></span>MySlotClass <span class="m-thin">class</span>
         </h1>
         <p>A class with attr-defined slots</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index c3107130ce2a47ba8deaa9b01051e1493d7bd20e..8a9989b86be09b0a8b8825fa2d104fe710e1a539 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           inspect_duplicate_class <span class="m-thin">module</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index 627b3de9ec2996903a9ba47021368fdbc0cc73f7..255bcb4c84e1db0af3923afbcd26584d38fec728 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_duplicate_class.html">inspect_duplicate_class</a>.<wbr/></span>sub <span class="m-thin">module</span>
         </h1>
         <p>A submodule.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index 52145fbc7da2f7cc034ee1935f4bb05d9ba614de..a216a423acbc737788e8cd6b39f609deb6fa8571 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_name_mapping.html">inspect_name_mapping</a>.<wbr/></span>Class <span class="m-thin">class</span>
         </h1>
         <p>A class</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="methods">
           <h2><a href="#methods">Methods</a></h2>
           <dl class="m-doc">
index 1253ae761764f7a968abc874e6d1c54d8cb9d60d..ed7945d9cb2c0d913c56452a391ee5bbc0320e59 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           inspect_name_mapping <span class="m-thin">module</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index 824fcb2dcee5b41dcef6382ac40e505ecbfb0b03..b73a614f60e461d7f7e8939097080998a88e88bc 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_name_mapping.html">inspect_name_mapping</a>.<wbr/></span>submodule <span class="m-thin">module</span>
         </h1>
         <p>This submodule is renamed from bar to submodule and should have a function member.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="functions">
           <h2><a href="#functions">Functions</a></h2>
           <dl class="m-doc">
index ca8a143e4fa92a9c28aab7399845f758ac4c4f5c..8279b0744272c2137f8aa8ea0173459e04289f14 100644 (file)
@@ -23,7 +23,7 @@
           inspect_recursive <span class="m-thin">module</span>
         </h1>
         <p>Recursive imports</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index 1c0354b746d8637da18ed7aebf03493af653bd90..28d58e3be6fd46eba1051d7048991386a60e4e3c 100644 (file)
@@ -35,7 +35,7 @@
           <span class="m-breadcrumb"><a href="inspect_string.html">inspect_string</a>.<wbr/></span>DerivedException <span class="m-thin">class</span>
         </h1>
         <p>A class deriving from BaseException, which has the weird args getset_descriptor</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -47,7 +47,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="methods">
           <h2><a href="#methods">Methods</a></h2>
           <dl class="m-doc">
index 17da2734a122fb13eb5e89533b0d3b9dbbb98cbd..3b5554ef86752a4d3237816ff5b5260257d98210 100644 (file)
@@ -35,7 +35,7 @@
           <span class="m-breadcrumb"><a href="inspect_string.html">inspect_string</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>The foo class</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -51,7 +51,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index f40daa45b38fd44778928e572621a6c0d8612936..42d01284aed9a7ad8afc231b0ce3273ce1bdde48 100644 (file)
@@ -35,7 +35,7 @@
           <span class="m-breadcrumb"><a href="inspect_string.html">inspect_string</a>.<wbr/></span>FooSlots <span class="m-thin">class</span>
         </h1>
         <p>A class with slots. Can&#x27;t have docstrings for these.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -45,7 +45,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 520570d44b8cabdd34dade09f25d131098a8c848..8f9a17eac41fe86d8b22c2b2278bc7c984c5797b 100644 (file)
@@ -35,7 +35,7 @@
           <span class="m-breadcrumb"><a href="inspect_string.html">inspect_string</a>.<wbr/></span>Specials <span class="m-thin">class</span>
         </h1>
         <p>Special class members</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -45,7 +45,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index fb0bcb1a01b674b39cc7f2b9aa86336a4d5ffcd7..869f4c899d39e6943c5a75b0e75d5560eed1f670 100644 (file)
@@ -35,7 +35,7 @@
           inspect_string <span class="m-thin">module</span>
         </h1>
         <p>A module</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -49,7 +49,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index a1f904742b807491335c65ce65a2e7069aa9f75f..35558ca0df6ce495ef0caf3ae20c3b6960e0471b 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>A class in the root module</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 7b00c5e0e789599a57ded66857000d24430badc7..2eb5e0b3903cce87f8f7f655ce40c031b79a26a5 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.first.html">first</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.first.Foo.html">Foo</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>An inner class in the first module</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p>Referencing self as <a class="m-doc" href="inspect_type_links.first.Foo.Foo.html">Foo</a> or <a class="m-doc" href="inspect_type_links.first.Foo.Foo.html">Foo.Foo</a>, parent as
 <a class="m-doc" href="inspect_type_links.first.Foo.html">first.Foo</a>, other as <a class="m-doc" href="inspect_type_links.second.Foo.html">second.Foo</a>. However inside annotations
 <code>Foo</code> references the parent, consistently in a function and in data?
index 95e788b593a3715db3323a33831ed5cb82b06ba6..992682a1008a81ccc8472d36ef74a072c7529c13 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.first.html">first</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>A class in the first module</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p><a class="m-doc" href="inspect_type_links.first.Foo.html">first.Foo</a> and <a class="m-doc" href="inspect_type_links.first.Foo.html">inspect_type_links.first.Foo</a> should
 lead to self; referencing the subclass via <a class="m-doc" href="inspect_type_links.first.Foo.Foo.html">Foo</a>, <a class="m-doc" href="inspect_type_links.first.Foo.Foo.html">Foo.Foo</a>,
 <a class="m-doc" href="inspect_type_links.first.Foo.Foo.html">first.Foo.Foo</a> or <a class="m-doc" href="inspect_type_links.first.Foo.Bar.html">Bar</a>. <a class="m-doc" href="inspect_type_links.second.Foo.html">second.Foo</a> and
index 4ad7b7b503296c027b0d79a21bc6e6054483b751..7300ac7cba8d7c66daf059c87d08530c04086d5d 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span>first <span class="m-thin">module</span>
         </h1>
         <p>First module</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p><a class="m-doc" href="inspect_type_links.first.Foo.html">Foo</a>, <a class="m-doc" href="inspect_type_links.first.Foo.html">first.Foo</a> and <a class="m-doc" href="inspect_type_links.first.Foo.html">inspect_type_links.first.Foo</a> should
 lead to the same class.</p>
         <section id="namespaces">
index 69fbb74f4114531dd632f2e27691f078a5aad67f..813f713e8659e69cb9b16eb457d1de17725201d0 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.first.html">first</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.first.sub.html">sub</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>A class in the submodule</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p>Referencing self as <a class="m-doc" href="inspect_type_links.first.sub.Foo.html">Foo</a> or <a class="m-doc" href="inspect_type_links.first.sub.Foo.html">sub.Foo</a>, parent as
 <a class="m-doc" href="inspect_type_links.first.Foo.html">first.Foo</a>, other as <a class="m-doc" href="inspect_type_links.second.Foo.html">second.Foo</a>.</p>
         <section id="methods">
index 9d9303dcb7d840abdf378ccf8649c12c041c3e28..0dff1ab57cf14b8d491ca27c7c46174e85a8f0f7 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.first.html">first</a>.<wbr/></span>sub <span class="m-thin">module</span>
         </h1>
         <p>Submodule</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index 994ac451f287eb63ed17ffb054889221f3b482e4..62715ee619b1e727880df28c6b5c1f0845a7449e 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           inspect_type_links <span class="m-thin">module</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
 <p><a class="m-doc" href="inspect_type_links.first.Foo.html">first.Foo</a> and <a class="m-doc" href="inspect_type_links.first.Foo.html">inspect_type_links.first.Foo</a> should lead to the
 same class.</p>
 <p><a class="m-doc-external" href="https://docs.python.org/3/library/functions.html#open">open()</a> should lead to the Python builtin, for the local
index 720d2f833a4459a0a52567b5d9b71f4d24194881..d3412d5376bdd242cb125fbc94011179249e00a2 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.second.html">second</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>A class in the second module</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 21ed4833ef9c8a02d8381cf4b37e275bf292a40c..ed06d2d5e93b26ad94aadb3c4fd33e8dcc8a5df5 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.second.html">second</a>.<wbr/></span>FooSlots <span class="m-thin">class</span>
         </h1>
         <p>A slot class</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 60c9e2be6cef04706573091d9842d16a91581a6d..c40af6750a8f532c305339be2701d4ae2df24b1d 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span><span class="m-breadcrumb"><a href="inspect_type_links.second.html">second</a>.<wbr/></span>FooSlotsInvalid <span class="m-thin">class</span>
         </h1>
         <p>A slot class with an invalid annotation. Has to be separate because otherwise it would invalidate all other slot annotations in FooSlots as well.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index e9933e3715dd1c39a7d97a58a33236a0742fc8fd..2a33768767bd8839bf65f9ee636e9cfc30cf4990 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="inspect_type_links.html">inspect_type_links</a>.<wbr/></span>second <span class="m-thin">module</span>
         </h1>
         <p>Second module</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -36,7 +36,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index f5cb470c1bb8001640d2562675ac5ee4aca61313..a0668786f30ac025a434376491aaff122bfde40f 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           <span class="m-breadcrumb"><a href="inspect_underscored.html">inspect_underscored</a>.<wbr/></span>Class <span class="m-thin">class</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="methods">
           <h2><a href="#methods">Methods</a></h2>
           <dl class="m-doc">
index fdc4f7ce9d9fcd2ef4fa354847e21f1f99a897e9..4b549b3b2344166d7b5403eb4ca024be2a8a4ce0 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           inspect_underscored <span class="m-thin">module</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -36,7 +36,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index be5bb6734778e84ade6e6151ae201e358a4c6ffe..99e59d7d70c34fdc0a5e478882bafce9dbe517ac 100644 (file)
@@ -23,7 +23,7 @@
           inspect_value_formatting <span class="m-thin">module</span>
         </h1>
         <p>Value and default argument formatting</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="enums">
           <h2><a href="#enums">Enums</a></h2>
           <dl class="m-doc">
index 775a5cbc03cf1f4510bf361eb568398d01b3c93c..0eac3992554aaba955d5fca737828e168e1ee535 100644 (file)
@@ -48,7 +48,7 @@
           <span class="m-breadcrumb"><a href="m.link_formatting.html#this-is-an-url">link_formatting</a>.<wbr/></span>Class <span class="m-thin">class</span>
         </h1>
         <p>This is a nice class.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -59,7 +59,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index f33a19ecd26cf58de433632caac4da3178b5cbc8..34a47e62b8a582afa1b1baaaa0fc2ff8baee6416 100644 (file)
@@ -48,7 +48,7 @@
           <span class="m-breadcrumb"><a href="m.link_formatting.html#this-is-an-url">link_formatting</a>.<wbr/></span><span class="m-breadcrumb"><a href="m.link_formatting.pybind.html#this-is-an-url">pybind</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>A class</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -59,7 +59,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="staticmethods">
           <h2><a href="#staticmethods">Static methods</a></h2>
           <dl class="m-doc">
index f79de53e58098e98f8d8ac18d926308ebea09681..cae0ece02df9c6588355b39b7d9b9866a63c4ea4 100644 (file)
@@ -48,7 +48,7 @@
           link_formatting <span class="m-thin">module</span>
         </h1>
         <p>This is a module.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -62,7 +62,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index 2357768d0bc3ea98052fc6f243c356be7e8c4c14..acccdf393140593250da4bfc173428d600dc491b 100644 (file)
@@ -48,7 +48,7 @@
           <span class="m-breadcrumb"><a href="m.link_formatting.html#this-is-an-url">link_formatting</a>.<wbr/></span>pybind <span class="m-thin">module</span>
         </h1>
         <p>pybind11 overloaded function link formatting</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -59,7 +59,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index 548939ea48d3718867262aff21a4c5e311d58e7a..9533342dc513da4107d9254e068830b7b1b339a2 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="pybind_external_overload_docs.html">pybind_external_overload_docs</a>.<wbr/></span>Class <span class="m-thin">class</span>
         </h1>
         <p>My fun class!</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="methods">
           <h2><a href="#methods">Methods</a></h2>
           <dl class="m-doc">
index 2768ba3698601a2c027be10e8957f07343ef486d..2766849cd571b0badc90dadc8d39c93bb8fd4d1e 100644 (file)
@@ -23,7 +23,7 @@
           pybind_external_overload_docs <span class="m-thin">module</span>
         </h1>
         <p>pybind11 external overload docs</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index 246af4ea7dce889349f12d45ad32836c5a15f7c7..6ddc8aa011b58b3a42061d7c69fbcfc520a08b40 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="pybind_name_mapping.html">pybind_name_mapping</a>.<wbr/></span>Class <span class="m-thin">class</span>
         </h1>
         <p>A class, renamed from Foo to Class</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="staticmethods">
           <h2><a href="#staticmethods">Static methods</a></h2>
           <dl class="m-doc">
index d1d90b5ed38aec84010300c639ade462aa6d8a65..a3d2cd12685dc2be6842df12acb15d0d06a1ab39 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           pybind_name_mapping <span class="m-thin">module</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index a50521e1754958103d4e9ae65947c0ee3e26cd48..8c0028d8434fc738732d8e8c2748c0b1a61e8fa6 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="pybind_name_mapping.html">pybind_name_mapping</a>.<wbr/></span>submodule <span class="m-thin">module</span>
         </h1>
         <p>This submodule is renamed from bar to submodule and should have a function member.</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="functions">
           <h2><a href="#functions">Functions</a></h2>
           <dl class="m-doc">
index 09aaa0eb22210e7189d6723aa69ad6026135dc92..ea239003bf38f7184a23ad7282012c7e3bf66d89 100644 (file)
@@ -22,7 +22,7 @@
         <h1>
           false_positives <span class="m-thin">module</span>
         </h1>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -32,7 +32,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="functions">
           <h2><a href="#functions">Functions</a></h2>
           <dl class="m-doc">
index 5343d0ce075453541dfc5d329ccf68f2b246b019..f0664f3661884e7b071a9f85ea612352a7c4b8c5 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="pybind_signatures.html">pybind_signatures</a>.<wbr/></span>MyClass <span class="m-thin">class</span>
         </h1>
         <p>My fun class!</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -36,7 +36,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="staticmethods">
           <h2><a href="#staticmethods">Static methods</a></h2>
           <dl class="m-doc">
index 54354af6770e5f2ab0a263ed310b30bb9ce0667c..4affeaffb031868739d02df8c845f107df29a18a 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="pybind_signatures.html">pybind_signatures</a>.<wbr/></span>MyClass23 <span class="m-thin">class</span>
         </h1>
         <p>Testing pybind 2.3 features</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="properties">
           <h2><a href="#properties">Properties</a></h2>
           <dl class="m-doc">
index 832b92ed0639d5df55d39e593129abb140c69df4..f844969e6dbf2b5540bb4dc7759eaaecf5ccb493 100644 (file)
@@ -23,7 +23,7 @@
           pybind_signatures <span class="m-thin">module</span>
         </h1>
         <p>pybind11 function signature extraction</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -34,7 +34,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">
index 11d4e98d175cf14b93923e1f87aaa4e69f8489c0..f46cdaaebd64dd4a68eb25e50c9a9035e4cd337f 100644 (file)
@@ -23,7 +23,7 @@
           pybind_submodules <span class="m-thin">module</span>
         </h1>
         <p>pybind11 submodules</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index 2065a2670ebac9f380cfdbc49573766d11517e69..3e9fbea362b62dcb47c5907ca6c41ad5cda6c847 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="pybind_submodules_package.html">pybind_submodules_package</a>.<wbr/></span>sub <span class="m-thin">module</span>
         </h1>
         <p>pybind11 submodule of a Python package</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -33,7 +33,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="namespaces">
           <h2><a href="#namespaces">Modules</a></h2>
           <dl class="m-doc">
index 99c03c0685dfd0cc412dd069bccfb605e7e18869..c019431075eae8947ffe91fdef82913b61a9beeb 100644 (file)
@@ -23,7 +23,7 @@
           <span class="m-breadcrumb"><a href="pybind_type_links.html">pybind_type_links</a>.<wbr/></span>Foo <span class="m-thin">class</span>
         </h1>
         <p>A class</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -35,7 +35,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="dunder-methods">
           <h2><a href="#dunder-methods">Special methods</a></h2>
           <dl class="m-doc">
index b1239b438ea9ad1d8d153dd02afac9189293262f..09fc4d505230b4d293a9211ba6162249bee7185c 100644 (file)
@@ -23,7 +23,7 @@
           pybind_type_links <span class="m-thin">module</span>
         </h1>
         <p>pybind11 type linking</p>
-        <div class="m-block m-default">
+        <nav class="m-block m-default">
           <h3>Contents</h3>
           <ul>
             <li>
@@ -36,7 +36,7 @@
               </ul>
             </li>
           </ul>
-        </div>
+        </nav>
         <section id="classes">
           <h2><a href="#classes">Classes</a></h2>
           <dl class="m-doc">