Correct links in html documentation using new version of makechap.py

Corrects position of heading text within A and H1, H2, ... elements.
This commit is contained in:
William S Fulton 2015-12-22 07:54:57 +00:00
commit 8288ac15a0
41 changed files with 1262 additions and 1262 deletions

View file

@ -6,7 +6,7 @@
</head>
<body bgcolor="#ffffff">
<H1><a name="Modules"></a>16 Working with Modules</H1>
<H1><a name="Modules">16 Working with Modules</a></H1>
<!-- INDEX -->
<div class="sectiontoc">
<ul>
@ -23,7 +23,7 @@
<H2><a name="Modules_introduction"></a>16.1 Modules Introduction</H2>
<H2><a name="Modules_introduction">16.1 Modules Introduction</a></H2>
<p>
@ -77,7 +77,7 @@ where you want to create a collection of modules.
Each module in the collection is created via separate invocations of SWIG.
</p>
<H2><a name="Modules_nn1"></a>16.2 Basics</H2>
<H2><a name="Modules_nn1">16.2 Basics</a></H2>
<p>
@ -176,7 +176,7 @@ in parallel from multiple threads as SWIG provides no locking - for more on that
issue, read on.
</p>
<H2><a name="Modules_nn2"></a>16.3 The SWIG runtime code</H2>
<H2><a name="Modules_nn2">16.3 The SWIG runtime code</a></H2>
<p>
@ -242,7 +242,7 @@ can peacefully coexist. So the type structures are separated by the
is empty. Only modules compiled with the same pair will share type information.
</p>
<H2><a name="Modules_external_run_time"></a>16.4 External access to the runtime</H2>
<H2><a name="Modules_external_run_time">16.4 External access to the runtime</a></H2>
<p>As described in <a href="Typemaps.html#Typemaps_runtime_type_checker">The run-time type checker</a>,
@ -281,7 +281,7 @@ SWIG_TYPE_TABLE to be the same as the module whose types you are trying to
access.
</p>
<H2><a name="Modules_nn4"></a>16.5 A word of caution about static libraries</H2>
<H2><a name="Modules_nn4">16.5 A word of caution about static libraries</a></H2>
<p>
@ -292,7 +292,7 @@ into it. This is very often <b>NOT</b> what you want and it can lead to unexpect
behavior. When working with dynamically loadable modules, you should try to work exclusively with shared libraries.
</p>
<H2><a name="Modules_nn5"></a>16.6 References</H2>
<H2><a name="Modules_nn5">16.6 References</a></H2>
<p>
@ -300,7 +300,7 @@ Due to the complexity of working with shared libraries and multiple modules, it
an outside reference. John Levine's "Linkers and Loaders" is highly recommended.
</p>
<H2><a name="Modules_nn6"></a>16.7 Reducing the wrapper file size</H2>
<H2><a name="Modules_nn6">16.7 Reducing the wrapper file size</a></H2>
<p>