$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73980 - in trunk/tools/quickbook: src test
From: dnljms_at_[hidden]
Date: 2011-08-21 07:56:51
Author: danieljames
Date: 2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
New Revision: 73980
URL: http://svn.boost.org/trac/boost/changeset/73980
Log:
Quickbook: Prioritize different generated ids.
Text files modified: 
   trunk/tools/quickbook/src/actions.cpp               |     6                                         
   trunk/tools/quickbook/src/doc_info_actions.cpp      |    10                                         
   trunk/tools/quickbook/src/id_generator.cpp          |     5                                         
   trunk/tools/quickbook/src/id_generator.hpp          |    11                                         
   trunk/tools/quickbook/test/identifier_1_5.gold      |   529 +++++++++++++++++++++--------------     
   trunk/tools/quickbook/test/identifier_1_5.quickbook |    16 +                                       
   trunk/tools/quickbook/test/identifier_1_6.gold      |   588 ++++++++++++++++++++++++++++++++++++++++
   trunk/tools/quickbook/test/identifier_1_6.quickbook |   138 +++++++++                               
   8 files changed, 1074 insertions(+), 229 deletions(-)
Modified: trunk/tools/quickbook/src/actions.cpp
==============================================================================
--- trunk/tools/quickbook/src/actions.cpp	(original)
+++ trunk/tools/quickbook/src/actions.cpp	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -365,14 +365,14 @@
             add_anchor(actions,
                 actions.section_id + '.' +
                     detail::make_identifier(content.get_boostbook()),
-                id_generator::generated);
+                id_generator::generated_heading);
         }
         else
         {
             id_generator::categories category =
                 !element_id.empty() ?
                     id_generator::explicit_id :
-                    id_generator::generated;
+                    id_generator::generated_heading;
 
             std::string id =
                 !element_id.empty() ?
@@ -1578,7 +1578,7 @@
                 actions.doc_id + "." + actions.qualified_section_id,
             !element_id.empty() ?
                 id_generator::explicit_id :
-                id_generator::generated);
+                id_generator::generated_section);
 
         actions.out << "\n<section id=\"" << full_id << "\">\n";
         actions.out << "<title>";
Modified: trunk/tools/quickbook/src/doc_info_actions.cpp
==============================================================================
--- trunk/tools/quickbook/src/doc_info_actions.cpp	(original)
+++ trunk/tools/quickbook/src/doc_info_actions.cpp	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -120,12 +120,17 @@
                 ;
         }
 
+        bool generated_id = false;
+
         if (!id.empty())
             actions.doc_id = id.get_quickbook();
 
         if (actions.doc_id.empty())
+        {
             actions.doc_id = detail::make_identifier(actions.doc_title_qbk);
-        
+            generated_id = true;
+        }
+
         if (dirname.empty() && actions.doc_type == "library") {
             if (!id.empty()) {
                 dirname = id;
@@ -233,7 +238,8 @@
             << "     \"http://www.boost.org/tools/boostbook/dtd/boostbook.dtd\">\n"
             << '<' << actions.doc_type << "\n"
             << "    id=\""
-            << actions.ids.add(actions.doc_id, id_generator::explicit_id)
+            << actions.ids.add(actions.doc_id, generated_id ?
+                id_generator::generated_doc : id_generator::explicit_id)
             << "\"\n";
         
         if(!lang.empty())
Modified: trunk/tools/quickbook/src/id_generator.cpp
==============================================================================
--- trunk/tools/quickbook/src/id_generator.cpp	(original)
+++ trunk/tools/quickbook/src/id_generator.cpp	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -204,6 +204,9 @@
         // Be careful here as it's quite likely that final_id is the
         // same as the original id, so this will just find the original
         // data.
+        //
+        // Not caring too much about 'category' and 'used', would want to if
+        // still creating ids.
         std::pair<boost::unordered_map<std::string, id_data>::iterator, bool>
             insert = ids.emplace(placeholder->final_id, placeholder->final_id,
                 placeholder->category, true);
@@ -263,7 +266,7 @@
 
     void id_generator::id_generation_data::new_base_value() {
         count = 0;
-        needs_underscore == !base.empty() &&
+        needs_underscore = !base.empty() &&
             std::isdigit(base[base.length() - 1]);
     }
 
Modified: trunk/tools/quickbook/src/id_generator.hpp
==============================================================================
--- trunk/tools/quickbook/src/id_generator.hpp	(original)
+++ trunk/tools/quickbook/src/id_generator.hpp	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -26,7 +26,10 @@
         enum categories
         {
             explicit_id = 0,    // Explicitly given by user
-            generated,          // Generated from source, e.g. table title
+            generated_doc,      // Generated ids for document.
+            generated_section,  // Generated ids for sections.
+            generated_heading,  // Generated ids for headings.
+            generated,          // Generated ids for other elements.
             numbered,           // Just used to avoid random docbook ids
             default_category
         };
@@ -68,12 +71,6 @@
         
         struct id_generation_data
         {
-            id_generation_data()
-              : parent(),
-                base(),
-                needs_underscore(false),
-                count(0) {}
-
             id_generation_data(std::string const& parent, std::string const& base)
               : parent(parent),
                 base(base),
Modified: trunk/tools/quickbook/test/identifier_1_5.gold
==============================================================================
--- trunk/tools/quickbook/test/identifier_1_5.gold	(original)
+++ trunk/tools/quickbook/test/identifier_1_5.gold	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -7,491 +7,592 @@
     <link linkend="identifiers_in_quickbook_1_5.test_heading_with__code__phrase_role__identifier__code__phrase___code_">Test
     heading with <code><phrase role="identifier">code</phrase></code></link>
   </bridgehead>
-  <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/>
+  <anchor id="identifiers_in_quickbook_1_5.identifier_10_0"/>
   <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h1">
+    <link linkend="identifiers_in_quickbook_1_5.identifier_10_0">Identifier 10</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.identifier_10_1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h2">
+    <link linkend="identifiers_in_quickbook_1_5.identifier_10_1">Identifier 10</link>
+  </bridgehead>
+  <table frame="all" id="identifiers_in_quickbook_1_5.identifier_10_2">
+    <title>Identifier 10</title>
+    <tgroup cols="1">
+      <tbody>
+        <row>
+          <entry>
+          </entry>
+        </row>
+      </tbody>
+    </tgroup>
+  </table>
+  <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h3">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_several_headers">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d0"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h2">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h4">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d0">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h3">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h5">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers">Generate
     a really long id and duplicate it by having lots of headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d1"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h4">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h6">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d1">Generate
     a really long id and duplicate it by having lots of headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d2"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h5">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h7">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d2">Generate
     a really long id and duplicate it by having lots of headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d3"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h6">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h8">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d3">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d5"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h7">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h9">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d5">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d6"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h8">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h10">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d6">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d7"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h9">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h11">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d7">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h10">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h12">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d8"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h11">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h13">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d8">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d9"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h12">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h14">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d9">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_0"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h13">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h15">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_0">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_1"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h14">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h16">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_1">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_2"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h15">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h17">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_2">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_3"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h16">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h18">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_3">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_4"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h17">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h19">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_4">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_5"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h18">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h20">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_5">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_6"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h19">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h21">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_6">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_7"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h20">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h22">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_7">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_8"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h21">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h23">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_8">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_9"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h22">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h24">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_9">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_10"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h23">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h25">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_10">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_11"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h24">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h26">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_11">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_12"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h25">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h27">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_12">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_13"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h26">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h28">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_13">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_14"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h27">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h29">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_14">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_16"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h28">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h30">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_16">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_17"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h29">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h31">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_17">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_18"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h30">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h32">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_18">Generate
     a really long id and duplicate it by having too many headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_19"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h31">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h33">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_19">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_20"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h32">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h34">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_20">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_21"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h33">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h35">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_21">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_22"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h34">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h36">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_22">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_23"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h35">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h37">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_23">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_24"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h36">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h38">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_24">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_25"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h37">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h39">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_25">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_26"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h38">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h40">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_26">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h39">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h41">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers">Generate
     a really long id and duplicate it by having even more headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_27"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h40">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h42">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_27">Generate
     a really long id and duplicate it by having even more headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_28"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h41">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h43">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_28">Generate
     a really long id and duplicate it by having even more headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_29"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h42">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h44">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_29">Generate
     a really long id and duplicate it by having several headers</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d4"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h43">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h45">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d4">Generate
     a really long id and d4</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_15"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h44">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h46">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_15">Generate
     a really long id and 15</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_30"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h45">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h47">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_30">Generate
     a really long id and d4</link>
   </bridgehead>
   <anchor id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_31"/>
-  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h46">
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h48">
     <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_31">Generate
     a really long id and 15</link>
   </bridgehead>
-  <section id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in">
-    <title><link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in">Something
-    to put the ids in</link></title> <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h0">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_several_headers">Generate
-      a really long id and duplicate it by having several headers</link>
-    </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d0"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h1">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d0">Generate
-      a really long id and duplicate it by having several headers</link>
-    </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h2">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers">Generate
+  <anchor id="identifiers_in_quickbook_1_5.a2345678901234567890123456789012"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h49">
+    <link linkend="identifiers_in_quickbook_1_5.a2345678901234567890123456789012">a2345678901234567890123456789012</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.a0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h50">
+    <link linkend="identifiers_in_quickbook_1_5.a0">a2345678901234567890123456789012</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcdef"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h51">
+    <link linkend="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcdef">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h52">
+    <link linkend="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde0">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h53">
+    <link linkend="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde1">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde2"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h54">
+    <link linkend="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde2">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.markup_in__code__phrase_role__identifier__heading__phrase___code___in__emphasis_role__bold__order__emphasis__to_test_normalization"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h55">
+    <link linkend="identifiers_in_quickbook_1_5.markup_in__code__phrase_role__identifier__heading__phrase___code___in__emphasis_role__bold__order__emphasis__to_test_normalization">Markup
+    in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+    to test normalization</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.markup_in_code_phrase_role_iden0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h56">
+    <link linkend="identifiers_in_quickbook_1_5.markup_in_code_phrase_role_iden0">Markup
+    in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+    to test normalization</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_5.markup_in_code_phrase_role_iden1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h57">
+    <link linkend="identifiers_in_quickbook_1_5.markup_in_code_phrase_role_iden1">Markup
+    in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+    to test normalization</link>
+  </bridgehead>
+  <section id="identifiers_in_quickbook_1_5.identifier_10">
+    <title><link linkend="identifiers_in_quickbook_1_5.identifier_10">Identifier
+    10</link></title> <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h0">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_several_headers">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h1">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d0">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h2">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers">Generate
       a really long id and duplicate it by having lots of headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d1"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h3">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d1">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h4">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d1">Generate
       a really long id and duplicate it by having lots of headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d2"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h4">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d2">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d2"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h5">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d2">Generate
       a really long id and duplicate it by having lots of headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d3"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h5">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d3">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d3"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h6">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d3">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d5"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h6">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d5">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d5"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h7">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d5">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d6"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h7">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d6">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d6"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h8">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d6">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d7"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h8">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d7">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d7"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h9">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d7">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h9">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h10">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d8"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h10">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d8">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d8"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h11">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d8">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d9"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h11">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d9">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d9"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h12">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d9">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_0"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h12">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_0">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h13">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_0">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_1"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h13">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_1">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h14">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_1">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_2"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h14">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_2">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_2"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h15">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_2">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_3"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h15">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_3">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_3"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h16">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_3">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_4"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h16">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_4">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_4"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h17">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_4">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_5"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h17">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_5">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_5"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h18">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_5">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_6"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h18">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_6">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_6"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h19">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_6">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_7"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h19">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_7">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_7"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h20">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_7">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_8"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h20">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_8">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_8"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h21">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_8">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_9"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h21">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_9">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_9"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h22">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_9">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_10"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h22">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_10">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_10"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h23">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_10">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_11"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h23">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_11">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_11"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h24">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_11">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_12"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h24">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_12">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_12"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h25">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_12">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_13"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h25">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_13">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_13"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h26">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_13">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_14"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h26">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_14">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_14"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h27">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_14">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_16"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h27">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_16">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_16"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h28">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_16">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_17"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h28">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_17">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_17"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h29">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_17">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_18"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h29">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_18">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_18"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h30">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_18">Generate
       a really long id and duplicate it by having too many headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_19"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h30">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_19">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_19"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h31">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_19">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_20"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h31">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_20">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_20"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h32">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_20">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_21"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h32">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_21">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_21"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h33">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_21">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_22"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h33">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_22">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_22"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h34">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_22">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_23"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h34">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_23">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_23"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h35">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_23">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_24"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h35">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_24">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_24"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h36">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_24">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_25"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h36">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_25">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_25"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h37">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_25">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_26"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h37">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_26">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_26"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h38">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_26">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h38">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h39">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers">Generate
       a really long id and duplicate it by having even more headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_27"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h39">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_27">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_27"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h40">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_27">Generate
       a really long id and duplicate it by having even more headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_28"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h40">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_28">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_28"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h41">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_28">Generate
       a really long id and duplicate it by having even more headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_29"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h41">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_29">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_29"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h42">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_29">Generate
       a really long id and duplicate it by having several headers</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d4"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h42">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_d4">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d4"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h43">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d4">Generate
       a really long id and d4</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_15"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h43">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_15">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_15"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h44">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_15">Generate
       a really long id and 15</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_30"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h44">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_30">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_30"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h45">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_30">Generate
       a really long id and d4</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_31"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h45">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.generate_a_really_long_id_and_31">Generate
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_31"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h46">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_31">Generate
       a really long id and 15</link>
     </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.a2345678901234567890123456789012"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h46">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.a2345678901234567890123456789012">a2345678901234567890123456789012</link>
-    </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.a0"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h47">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.a0">a2345678901234567890123456789012</link>
-    </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcdef"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h48">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcdef">abcdefghijklmnopqrstuvwxyzabcdef</link>
-    </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcde0"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h49">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcde0">abcdefghijklmnopqrstuvwxyzabcdef</link>
-    </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcde1"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h50">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcde1">abcdefghijklmnopqrstuvwxyzabcdef</link>
-    </bridgehead>
-    <anchor id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcde2"/>
-    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.h51">
-      <link linkend="identifiers_in_quickbook_1_5.something_to_put_the_ids_in.abcdefghijklmnopqrstuvwxyzabcde2">abcdefghijklmnopqrstuvwxyzabcdef</link>
-    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.a2345678901234567890123456789012"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h47">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.a2345678901234567890123456789012">a2345678901234567890123456789012</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.a0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h48">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.a0">a2345678901234567890123456789012</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcdef"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h49">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcdef">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h50">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde0">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h51">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde1">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde2"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h52">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde2">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.markup_in__code__phrase_role__identifier__heading__phrase___code___in__emphasis_role__bold__order__emphasis__to_test_normalization"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h53">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.markup_in__code__phrase_role__identifier__heading__phrase___code___in__emphasis_role__bold__order__emphasis__to_test_normalization">Markup
+      in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+      to test normalization</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.markup_in_code_phrase_role_iden0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h54">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.markup_in_code_phrase_role_iden0">Markup
+      in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+      to test normalization</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_5.identifier_10.markup_in_code_phrase_role_iden1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.identifier_10.h55">
+      <link linkend="identifiers_in_quickbook_1_5.identifier_10.markup_in_code_phrase_role_iden1">Markup
+      in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+      to test normalization</link>
+    </bridgehead>
+    <table frame="all" id="identifiers_in_quickbook_1_5.identifier_10.h3">
+      <title>h3</title>
+      <tgroup cols="1">
+        <tbody>
+          <row>
+            <entry>
+            </entry>
+          </row>
+        </tbody>
+      </tgroup>
+    </table>
+    <table frame="all" id="identifiers_in_quickbook_1_5.identifier_10.h3_0">
+      <title>h3</title>
+      <tgroup cols="1">
+        <tbody>
+          <row>
+            <entry>
+            </entry>
+          </row>
+        </tbody>
+      </tgroup>
+    </table>
   </section>
 </article>
Modified: trunk/tools/quickbook/test/identifier_1_5.quickbook
==============================================================================
--- trunk/tools/quickbook/test/identifier_1_5.quickbook	(original)
+++ trunk/tools/quickbook/test/identifier_1_5.quickbook	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -4,6 +4,12 @@
 
 [heading Test heading with `code`]
 
+[heading Identifier 10]
+[heading Identifier 10]
+[table Identifier 10
+[[]]
+]
+
 [heading Generate a really long id and duplicate it by having several headers]
 [heading Generate a really long id and duplicate it by having several headers]
 [heading Generate a really long id and duplicate it by having lots of headers]
@@ -63,7 +69,7 @@
 [heading Markup in `heading`  in *order* to test normalization]
 [heading Markup in `heading`  in *order* to test normalization]
 
-[section Something to put the ids in]
+[section Identifier 10]
 
 [heading Generate a really long id and duplicate it by having several headers]
 [heading Generate a really long id and duplicate it by having several headers]
@@ -124,4 +130,12 @@
 [heading Markup in `heading`  in *order* to test normalization]
 [heading Markup in `heading`  in *order* to test normalization]
 
+[table h3
+[[]]
+]
+
+[table h3
+[[]]
+]
+
 [endsect]
\ No newline at end of file
Modified: trunk/tools/quickbook/test/identifier_1_6.gold
==============================================================================
--- trunk/tools/quickbook/test/identifier_1_6.gold	(original)
+++ trunk/tools/quickbook/test/identifier_1_6.gold	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -7,4 +7,592 @@
     <link linkend="identifiers_in_quickbook_1_6.test_heading_with__code_">Test heading
     with <code><phrase role="identifier">code</phrase></code></link>
   </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.identifier_10_0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h1">
+    <link linkend="identifiers_in_quickbook_1_6.identifier_10_0">Identifier 10</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.identifier_10_1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h2">
+    <link linkend="identifiers_in_quickbook_1_6.identifier_10_1">Identifier 10</link>
+  </bridgehead>
+  <table frame="all" id="identifiers_in_quickbook_1_6.identifier_10_2">
+    <title>Identifier 10</title>
+    <tgroup cols="1">
+      <tbody>
+        <row>
+          <entry>
+          </entry>
+        </row>
+      </tbody>
+    </tgroup>
+  </table>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h3">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_several_headers">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h4">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d0">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h5">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers">Generate
+    a really long id and duplicate it by having lots of headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h6">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d1">Generate
+    a really long id and duplicate it by having lots of headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d2"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h7">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d2">Generate
+    a really long id and duplicate it by having lots of headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d3"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h8">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d3">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d5"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h9">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d5">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d6"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h10">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d6">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d7"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h11">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d7">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h12">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d8"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h13">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d8">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d9"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h14">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d9">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h15">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_0">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h16">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_1">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_2"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h17">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_2">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_3"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h18">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_3">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_4"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h19">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_4">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_5"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h20">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_5">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_6"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h21">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_6">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_7"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h22">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_7">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_8"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h23">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_8">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_9"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h24">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_9">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_10"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h25">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_10">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_11"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h26">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_11">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_12"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h27">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_12">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_13"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h28">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_13">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_14"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h29">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_14">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_16"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h30">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_16">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_17"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h31">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_17">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_18"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h32">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_18">Generate
+    a really long id and duplicate it by having too many headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_19"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h33">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_19">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_20"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h34">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_20">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_21"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h35">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_21">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_22"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h36">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_22">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_23"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h37">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_23">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_24"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h38">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_24">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_25"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h39">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_25">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_26"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h40">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_26">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h41">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers">Generate
+    a really long id and duplicate it by having even more headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_27"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h42">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_27">Generate
+    a really long id and duplicate it by having even more headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_28"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h43">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_28">Generate
+    a really long id and duplicate it by having even more headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_29"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h44">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_29">Generate
+    a really long id and duplicate it by having several headers</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d4"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h45">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d4">Generate
+    a really long id and d4</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_15"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h46">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_15">Generate
+    a really long id and 15</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_30"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h47">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_30">Generate
+    a really long id and d4</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_31"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h48">
+    <link linkend="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_31">Generate
+    a really long id and 15</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.a2345678901234567890123456789012"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h49">
+    <link linkend="identifiers_in_quickbook_1_6.a2345678901234567890123456789012">a2345678901234567890123456789012</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.a0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h50">
+    <link linkend="identifiers_in_quickbook_1_6.a0">a2345678901234567890123456789012</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcdef"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h51">
+    <link linkend="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcdef">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h52">
+    <link linkend="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde0">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h53">
+    <link linkend="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde1">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde2"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h54">
+    <link linkend="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde2">abcdefghijklmnopqrstuvwxyzabcdef</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.markup_in__heading___in__order__to_test_normalization"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h55">
+    <link linkend="identifiers_in_quickbook_1_6.markup_in__heading___in__order__to_test_normalization">Markup
+    in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+    to test normalization</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.markup_in_heading_in_order_to_t0"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h56">
+    <link linkend="identifiers_in_quickbook_1_6.markup_in_heading_in_order_to_t0">Markup
+    in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+    to test normalization</link>
+  </bridgehead>
+  <anchor id="identifiers_in_quickbook_1_6.markup_in_heading_in_order_to_t1"/>
+  <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h57">
+    <link linkend="identifiers_in_quickbook_1_6.markup_in_heading_in_order_to_t1">Markup
+    in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+    to test normalization</link>
+  </bridgehead>
+  <section id="identifiers_in_quickbook_1_6.identifier_10">
+    <title><link linkend="identifiers_in_quickbook_1_6.identifier_10">Identifier
+    10</link></title> <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h0">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_several_headers">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h1">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d0">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h2">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers">Generate
+      a really long id and duplicate it by having lots of headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h4">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d1">Generate
+      a really long id and duplicate it by having lots of headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d2"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h5">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d2">Generate
+      a really long id and duplicate it by having lots of headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d3"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h6">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d3">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d5"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h7">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d5">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d6"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h8">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d6">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d7"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h9">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d7">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h10">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d8"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h11">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d8">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d9"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h12">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d9">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h13">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_0">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h14">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_1">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_2"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h15">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_2">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_3"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h16">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_3">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_4"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h17">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_4">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_5"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h18">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_5">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_6"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h19">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_6">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_7"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h20">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_7">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_8"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h21">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_8">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_9"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h22">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_9">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_10"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h23">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_10">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_11"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h24">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_11">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_12"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h25">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_12">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_13"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h26">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_13">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_14"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h27">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_14">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_16"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h28">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_16">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_17"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h29">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_17">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_18"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h30">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_18">Generate
+      a really long id and duplicate it by having too many headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_19"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h31">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_19">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_20"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h32">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_20">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_21"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h33">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_21">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_22"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h34">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_22">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_23"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h35">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_23">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_24"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h36">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_24">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_25"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h37">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_25">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_26"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h38">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_26">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h39">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers">Generate
+      a really long id and duplicate it by having even more headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_27"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h40">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_27">Generate
+      a really long id and duplicate it by having even more headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_28"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h41">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_28">Generate
+      a really long id and duplicate it by having even more headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_29"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h42">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_29">Generate
+      a really long id and duplicate it by having several headers</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d4"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h43">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d4">Generate
+      a really long id and d4</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_15"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h44">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_15">Generate
+      a really long id and 15</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_30"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h45">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_30">Generate
+      a really long id and d4</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_31"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h46">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_31">Generate
+      a really long id and 15</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.a2345678901234567890123456789012"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h47">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.a2345678901234567890123456789012">a2345678901234567890123456789012</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.a0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h48">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.a0">a2345678901234567890123456789012</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcdef"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h49">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcdef">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h50">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde0">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h51">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde1">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde2"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h52">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde2">abcdefghijklmnopqrstuvwxyzabcdef</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.markup_in__heading___in__order__to_test_normalization"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h53">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.markup_in__heading___in__order__to_test_normalization">Markup
+      in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+      to test normalization</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.markup_in_heading_in_order_to_t0"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h54">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.markup_in_heading_in_order_to_t0">Markup
+      in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+      to test normalization</link>
+    </bridgehead>
+    <anchor id="identifiers_in_quickbook_1_6.identifier_10.markup_in_heading_in_order_to_t1"/>
+    <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.identifier_10.h55">
+      <link linkend="identifiers_in_quickbook_1_6.identifier_10.markup_in_heading_in_order_to_t1">Markup
+      in <code><phrase role="identifier">heading</phrase></code> in <emphasis role="bold">order</emphasis>
+      to test normalization</link>
+    </bridgehead>
+    <table frame="all" id="identifiers_in_quickbook_1_6.identifier_10.h3">
+      <title>h3</title>
+      <tgroup cols="1">
+        <tbody>
+          <row>
+            <entry>
+            </entry>
+          </row>
+        </tbody>
+      </tgroup>
+    </table>
+    <table frame="all" id="identifiers_in_quickbook_1_6.identifier_10.h3_0">
+      <title>h3</title>
+      <tgroup cols="1">
+        <tbody>
+          <row>
+            <entry>
+            </entry>
+          </row>
+        </tbody>
+      </tgroup>
+    </table>
+  </section>
 </article>
Modified: trunk/tools/quickbook/test/identifier_1_6.quickbook
==============================================================================
--- trunk/tools/quickbook/test/identifier_1_6.quickbook	(original)
+++ trunk/tools/quickbook/test/identifier_1_6.quickbook	2011-08-21 07:56:49 EDT (Sun, 21 Aug 2011)
@@ -2,4 +2,140 @@
     [quickbook 1.6]
 ]
 
-[heading Test heading with `code`]
\ No newline at end of file
+[heading Test heading with `code`]
+
+[heading Identifier 10]
+[heading Identifier 10]
+[table Identifier 10
+[[]]
+]
+
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having lots of headers]
+[heading Generate a really long id and duplicate it by having lots of headers]
+[heading Generate a really long id and duplicate it by having lots of headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having even more headers]
+[heading Generate a really long id and duplicate it by having even more headers]
+[heading Generate a really long id and duplicate it by having even more headers]
+[heading Generate a really long id and duplicate it by having several headers]
+
+[heading Generate a really long id and d4]
+[heading Generate a really long id and 15]
+[heading Generate a really long id and d4]
+[heading Generate a really long id and 15]
+
+[heading a2345678901234567890123456789012]
+[heading a2345678901234567890123456789012]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+
+[heading Markup in `heading`  in *order* to test normalization]
+[heading Markup in `heading`  in *order* to test normalization]
+[heading Markup in `heading`  in *order* to test normalization]
+
+[section Identifier 10]
+
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having lots of headers]
+[heading Generate a really long id and duplicate it by having lots of headers]
+[heading Generate a really long id and duplicate it by having lots of headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having too many headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having several headers]
+[heading Generate a really long id and duplicate it by having even more headers]
+[heading Generate a really long id and duplicate it by having even more headers]
+[heading Generate a really long id and duplicate it by having even more headers]
+[heading Generate a really long id and duplicate it by having several headers]
+
+[heading Generate a really long id and d4]
+[heading Generate a really long id and 15]
+[heading Generate a really long id and d4]
+[heading Generate a really long id and 15]
+
+[heading a2345678901234567890123456789012]
+[heading a2345678901234567890123456789012]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+[heading abcdefghijklmnopqrstuvwxyzabcdef]
+
+[heading Markup in `heading`  in *order* to test normalization]
+[heading Markup in `heading`  in *order* to test normalization]
+[heading Markup in `heading`  in *order* to test normalization]
+
+[table h3
+[[]]
+]
+
+[table h3
+[[]]
+]
+
+[endsect]
\ No newline at end of file