Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r74346 - in trunk/tools/quickbook: src test
From: dnljms_at_[hidden]
Date: 2011-09-11 12:58:17


Author: danieljames
Date: 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
New Revision: 74346
URL: http://svn.boost.org/trac/boost/changeset/74346

Log:
Quickbook: Change the anchor markup for headers.

Use a phrase with an id inside the header.

Using an anchor before the heading was causing problems when the heading
wasn't inside a section.

We can't use an anchor inside the header when it links to itself, as it
messes up getting the title for the link. Using an empty phrase means
that it will just get the empty title for the phrase. Thanks to John
Maddock for the idea.

This does generate slightly odd markup. We could possibly use the old
style markup whenever section depth > 0, since we would know that we're
inside a section, but that seems like an unnecessary complication.
Added:
   trunk/tools/quickbook/test/heading_1_5.gold (contents, props changed)
Text files modified:
   trunk/tools/quickbook/src/actions.cpp | 57 +++-
   trunk/tools/quickbook/test/anchor.gold | 23 +
   trunk/tools/quickbook/test/blocks.gold | 15
   trunk/tools/quickbook/test/code-block.gold | 5
   trunk/tools/quickbook/test/heading_1_1.gold | 8
   trunk/tools/quickbook/test/heading_1_3.gold | 11
   trunk/tools/quickbook/test/heading_1_6.gold | 12
   trunk/tools/quickbook/test/identifier_1_5.gold | 462 +++++++++++++++++++-------------------
   trunk/tools/quickbook/test/identifier_1_6.gold | 463 +++++++++++++++++++--------------------
   trunk/tools/quickbook/test/quickbook-manual.gold | 73 ++---
   trunk/tools/quickbook/test/template-section.gold | 3
   trunk/tools/quickbook/test/unicode-escape.gold | 5
   trunk/tools/quickbook/test/utf-8-bom.gold | 4
   trunk/tools/quickbook/test/utf-8.gold | 4
   14 files changed, 575 insertions(+), 570 deletions(-)

Modified: trunk/tools/quickbook/src/actions.cpp
==============================================================================
--- trunk/tools/quickbook/src/actions.cpp (original)
+++ trunk/tools/quickbook/src/actions.cpp 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -320,16 +320,32 @@
     }
     
     namespace {
- void write_bridgehead(collector& out, int level,
- std::string const& str, std::string const& id, std::string const& linkend)
+ void write_bridgehead(quickbook::actions& actions, int level,
+ std::string const& str, std::string const& id, bool self_link)
         {
- out << "<bridgehead renderas=\"sect" << level << "\"";
- if(!id.empty()) out << " id=\"" << id << "\"";
- out << ">";
- if(!linkend.empty()) out << "<link linkend=\"" << linkend << "\">";
- out << str;
- if(!linkend.empty()) out << "</link>";
- out << "</bridgehead>";
+ if (self_link && !id.empty())
+ {
+ actions.out << "<bridgehead renderas=\"sect" << level << "\"";
+ actions.out << " id=\"";
+ actions.out << actions.ids.add(
+ fully_qualified_id(actions.doc_id,
+ actions.qualified_section_id, "h"),
+ id_generator::numbered),
+ actions.out << "\">";
+ actions.out << "<phrase id=\"" << id << "\"/>";
+ actions.out << "<link linkend=\"" << id << "\">";
+ actions.out << str;
+ actions.out << "</link>";
+ actions.out << "</bridgehead>";
+ }
+ else
+ {
+ actions.out << "<bridgehead renderas=\"sect" << level << "\"";
+ if(!id.empty()) actions.out << " id=\"" << id << "\"";
+ actions.out << ">";
+ actions.out << str;
+ actions.out << "</bridgehead>";
+ }
         }
     }
 
@@ -360,14 +376,17 @@
             level = heading_list.get_tag() - block_tags::heading1 + 1;
         }
 
- std::string linkend;
+ write_anchors(actions, actions.out);
 
         if (!generic && qbk_version_n < 103) // version 1.2 and below
         {
- add_anchor(actions,
+ std::string anchor = actions.ids.add(
                 actions.section_id + '.' +
                     detail::make_identifier(content.get_boostbook()),
                 id_generator::generated_heading);
+
+ write_bridgehead(actions, level,
+ content.get_boostbook(), anchor, false);
         }
         else
         {
@@ -385,20 +404,14 @@
                             content.get_boostbook()
                     );
 
- linkend = add_anchor(actions,
+ std::string anchor = actions.ids.add(
                 fully_qualified_id(actions.doc_id,
                     actions.qualified_section_id, id),
- category);
- }
+ category);;
 
- write_anchors(actions, actions.out);
- write_bridgehead(actions.out, level,
- content.get_boostbook(),
- actions.ids.add(
- fully_qualified_id(actions.doc_id,
- actions.qualified_section_id, "h"),
- id_generator::numbered),
- linkend);
+ write_bridgehead(actions, level,
+ content.get_boostbook(), anchor, true);
+ }
     }
 
     void simple_phrase_action::operator()(char mark) const

Modified: trunk/tools/quickbook/test/anchor.gold
==============================================================================
--- trunk/tools/quickbook/test/anchor.gold (original)
+++ trunk/tools/quickbook/test/anchor.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -9,26 +9,29 @@
       <anchor id="a1"/>A paragraph containing several anchors. <anchor id="a2"/>We
       want to make sure they appear in the correct place. <anchor id="a3"/>
     </para>
- <anchor id="anchor_test.anchors.this_heading_shouldn_t_pick_up_the_previous_anchor"/>
     <bridgehead renderas="sect3" id="anchor_test.anchors.h0">
- <link linkend="anchor_test.anchors.this_heading_shouldn_t_pick_up_the_previous_anchor">This
+ <phrase id="anchor_test.anchors.this_heading_shouldn_t_pick_up_the_previous_anchor"/><link
+ linkend="anchor_test.anchors.this_heading_shouldn_t_pick_up_the_previous_anchor">This
       heading shouldn't pick up the previous anchor</link>
     </bridgehead>
- <anchor id="a4"/><anchor id="anchor_test.anchors.this_heading_should_pick_up_the_previous_anchor"/>
+ <anchor id="a4"/>
     <bridgehead renderas="sect3" id="anchor_test.anchors.h1">
- <link linkend="anchor_test.anchors.this_heading_should_pick_up_the_previous_anchor">This
+ <phrase id="anchor_test.anchors.this_heading_should_pick_up_the_previous_anchor"/><link
+ linkend="anchor_test.anchors.this_heading_should_pick_up_the_previous_anchor">This
       heading should pick up the previous anchor</link>
     </bridgehead>
- <anchor id="a5"/><anchor id="anchor_test.anchors.and_this_one"/>
+ <anchor id="a5"/>
     <bridgehead renderas="sect3" id="anchor_test.anchors.h2">
- <link linkend="anchor_test.anchors.and_this_one">And this one</link>
+ <phrase id="anchor_test.anchors.and_this_one"/><link linkend="anchor_test.anchors.and_this_one">And
+ this one</link>
     </bridgehead>
- <anchor id="a6"/><anchor id="anchor_test.anchors.also_this_one"/>
+ <anchor id="a6"/>
     <bridgehead renderas="sect3" id="anchor_test.anchors.h3">
- <link linkend="anchor_test.anchors.also_this_one">Also this one</link>
+ <phrase id="anchor_test.anchors.also_this_one"/><link linkend="anchor_test.anchors.also_this_one">Also
+ this one</link>
     </bridgehead>
- <anchor id="a7"/><anchor id="anchors.finally_this"/>
- <bridgehead renderas="sect3" id="anchor_test.anchors.h4">
+ <anchor id="a7"/>
+ <bridgehead renderas="sect3" id="anchors.finally_this">
       Finally this
     </bridgehead>
     <anchor id="a8"/>

Modified: trunk/tools/quickbook/test/blocks.gold
==============================================================================
--- trunk/tools/quickbook/test/blocks.gold (original)
+++ trunk/tools/quickbook/test/blocks.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -2,9 +2,9 @@
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="various_blocks" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
  xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Various blocks</title> <anchor id="various_blocks.blockquotes"/>
+ <title>Various blocks</title>
   <bridgehead renderas="sect2" id="various_blocks.h0">
- <link linkend="various_blocks.blockquotes">Blockquotes</link>
+ <phrase id="various_blocks.blockquotes"/><link linkend="various_blocks.blockquotes">Blockquotes</link>
   </bridgehead>
   <para>
     Here's a blockquote:
@@ -25,9 +25,8 @@
       Blockquote second paragraph.
     </para>
   </blockquote>
- <anchor id="various_blocks.admonitions"/>
   <bridgehead renderas="sect2" id="various_blocks.h1">
- <link linkend="various_blocks.admonitions">Admonitions</link>
+ <phrase id="various_blocks.admonitions"/><link linkend="various_blocks.admonitions">Admonitions</link>
   </bridgehead>
   <warning>
     <para>
@@ -62,17 +61,17 @@
       Warning second paragraph.
     </para>
   </warning>
- <anchor id="various_blocks.blurb"/>
   <bridgehead renderas="sect2" id="various_blocks.h2">
- <link linkend="various_blocks.blurb">Blurb</link>
+ <phrase id="various_blocks.blurb"/><link linkend="various_blocks.blurb">Blurb</link>
   </bridgehead>
   <sidebar role="blurb">
   <para>
     Blurb
   </para>
- </sidebar> <anchor id="various_blocks.inline_blocks"/>
+ </sidebar>
   <bridgehead renderas="sect2" id="various_blocks.h3">
- <link linkend="various_blocks.inline_blocks">Inline blocks</link>
+ <phrase id="various_blocks.inline_blocks"/><link linkend="various_blocks.inline_blocks">Inline
+ blocks</link>
   </bridgehead>
   <blockquote>
     <para>

Modified: trunk/tools/quickbook/test/code-block.gold
==============================================================================
--- trunk/tools/quickbook/test/code-block.gold (original)
+++ trunk/tools/quickbook/test/code-block.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -26,10 +26,9 @@
   <para>
     Paragraph.
   </para>
- <anchor id="indented_code_blocks.code_blocks_separated_by_comment"/>
   <bridgehead renderas="sect2" id="indented_code_blocks.h0">
- <link linkend="indented_code_blocks.code_blocks_separated_by_comment">Code blocks
- separated by comment</link>
+ <phrase id="indented_code_blocks.code_blocks_separated_by_comment"/><link linkend="indented_code_blocks.code_blocks_separated_by_comment">Code
+ blocks separated by comment</link>
   </bridgehead>
   
 <programlisting>First code block.

Modified: trunk/tools/quickbook/test/heading_1_1.gold
==============================================================================
--- trunk/tools/quickbook/test/heading_1_1.gold (original)
+++ trunk/tools/quickbook/test/heading_1_1.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -2,13 +2,13 @@
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="heading_1_1" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
  xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Heading 1.1</title> <anchor id=".first_heading"/>
- <bridgehead renderas="sect1" id="heading_1_1.h0">
+ <title>Heading 1.1</title>
+ <bridgehead renderas="sect1" id=".first_heading">
     First heading
   </bridgehead>
   <section id="heading_1_1.section">
- <title>Section</title> <anchor id="section.second_heading"/>
- <bridgehead renderas="sect2" id="heading_1_1.section.h0">
+ <title>Section</title>
+ <bridgehead renderas="sect2" id="section.second_heading">
       Second heading
     </bridgehead>
   </section>

Modified: trunk/tools/quickbook/test/heading_1_3.gold
==============================================================================
--- trunk/tools/quickbook/test/heading_1_3.gold (original)
+++ trunk/tools/quickbook/test/heading_1_3.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -1,23 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="header" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $" xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Header</title> <anchor id="header.header_test"/>
+ <title>Header</title>
   <bridgehead renderas="sect2" id="header.h0">
- <link linkend="header.header_test">Header Test</link>
+ <phrase id="header.header_test"/><link linkend="header.header_test">Header Test</link>
   </bridgehead>
   <para>
     Testing headers without sections.
   </para>
- <anchor id="header._not_an_id"/>
   <bridgehead renderas="sect2" id="header.h1">
- <link linkend="header._not_an_id">:Not an Id</link>
+ <phrase id="header._not_an_id"/><link linkend="header._not_an_id">:Not an Id</link>
   </bridgehead>
   <para>
     Paragraph.
   </para>
- <anchor id="header._not_an_id_again"/>
   <bridgehead renderas="sect3" id="header.h2">
- <link linkend="header._not_an_id_again">:Not an Id again</link>
+ <phrase id="header._not_an_id_again"/><link linkend="header._not_an_id_again">:Not
+ an Id again</link>
   </bridgehead>
   <para>
     Paragraph.

Added: trunk/tools/quickbook/test/heading_1_5.gold
==============================================================================
--- (empty file)
+++ trunk/tools/quickbook/test/heading_1_5.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
+<article id="heading_test_1_5" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
+ xmlns:xi="http://www.w3.org/2001/XInclude">
+ <title>Heading Test 1.5</title>
+ <bridgehead renderas="sect2" id="heading_test_1_5.h0">
+ <phrase id="heading_test_1_5.generic_header"/><link linkend="heading_test_1_5.generic_header">Generic
+ header</link>
+ </bridgehead>
+ <bridgehead renderas="sect1" id="heading_test_1_5.h2">
+ <phrase id="heading_test_1_5.level_1"/><link linkend="heading_test_1_5.level_1">Level
+ 1</link>
+ </bridgehead>
+ <bridgehead renderas="sect2" id="heading_test_1_5.h3">
+ <phrase id="heading_test_1_5.level_2"/><link linkend="heading_test_1_5.level_2">Level
+ 2</link>
+ </bridgehead>
+ <bridgehead renderas="sect3" id="heading_test_1_5.h4">
+ <phrase id="heading_test_1_5.level_3"/><link linkend="heading_test_1_5.level_3">Level
+ 3</link>
+ </bridgehead>
+ <bridgehead renderas="sect4" id="heading_test_1_5.h5">
+ <phrase id="heading_test_1_5.level_4"/><link linkend="heading_test_1_5.level_4">Level
+ 4</link>
+ </bridgehead>
+ <bridgehead renderas="sect5" id="heading_test_1_5.h6">
+ <phrase id="heading_test_1_5.level_5"/><link linkend="heading_test_1_5.level_5">Level
+ 5</link>
+ </bridgehead>
+ <bridgehead renderas="sect6" id="heading_test_1_5.h8">
+ <phrase id="heading_test_1_5.level_6"/><link linkend="heading_test_1_5.level_6">Level
+ 6</link>
+ </bridgehead>
+ <bridgehead renderas="sect1" id="heading_test_1_5.h9">
+ <phrase id="heading_test_1_5._emphasis_role__bold__bold__emphasis_"/><link linkend="heading_test_1_5._emphasis_role__bold__bold__emphasis_"><emphasis
+ role="bold">Bold</emphasis></link>
+ </bridgehead>
+ <bridgehead renderas="sect1" id="heading_test_1_5.h10">
+ <phrase id="heading_test_1_5.comment"/><link linkend="heading_test_1_5.comment">Comment</link>
+ </bridgehead>
+ <bridgehead renderas="sect1" id="heading_test_1_5.h11">
+ <phrase id="heading_test_1_5._notanid"/><link linkend="heading_test_1_5._notanid">:notanid</link>
+ </bridgehead>
+ <bridgehead renderas="sect1" id="heading_test_1_5.h12">
+ <phrase id="heading_test_1_5._also_not_an_id"/><link linkend="heading_test_1_5._also_not_an_id">:also
+ not an id</link>
+ </bridgehead>
+ <bridgehead renderas="sect2" id="heading_test_1_5.h13">
+ <phrase id="heading_test_1_5.h1"/><link linkend="heading_test_1_5.h1">H1</link>
+ </bridgehead>
+ <section id="heading_test_1_5.s1">
+ <title><link linkend="heading_test_1_5.s1">S1</link></title>
+ <bridgehead renderas="sect2" id="heading_test_1_5.s1.h0">
+ <phrase id="heading_test_1_5.s1.h2"/><link linkend="heading_test_1_5.s1.h2">H2</link>
+ </bridgehead>
+ <section id="heading_test_1_5.s1.s2">
+ <title><link linkend="heading_test_1_5.s1.s2">S2</link></title>
+ <bridgehead renderas="sect3" id="heading_test_1_5.s1.s2.h0">
+ <phrase id="heading_test_1_5.s1.s2.h3"/><link linkend="heading_test_1_5.s1.s2.h3">H3</link>
+ </bridgehead>
+ </section>
+ <bridgehead renderas="sect2" id="heading_test_1_5.s1.h1">
+ <phrase id="heading_test_1_5.s1.h4"/><link linkend="heading_test_1_5.s1.h4">H4</link>
+ </bridgehead>
+ <section id="heading_test_1_5.s1.s3">
+ <title><link linkend="heading_test_1_5.s1.s3">S3</link></title>
+ <bridgehead renderas="sect4" id="heading_test_1_5.s1.s3.h0">
+ <phrase id="heading_test_1_5.s1.s3.h5"/><link linkend="heading_test_1_5.s1.s3.h5">H5</link>
+ </bridgehead>
+ </section>
+ <bridgehead renderas="sect2" id="heading_test_1_5.s1.h3">
+ <phrase id="heading_test_1_5.s1.h6"/><link linkend="heading_test_1_5.s1.h6">H6</link>
+ </bridgehead>
+ </section>
+ <bridgehead renderas="sect1" id="heading_test_1_5.h14">
+ <phrase id="heading_test_1_5.h7"/><link linkend="heading_test_1_5.h7">H7</link>
+ </bridgehead>
+</article>

Modified: trunk/tools/quickbook/test/heading_1_6.gold
==============================================================================
--- trunk/tools/quickbook/test/heading_1_6.gold (original)
+++ trunk/tools/quickbook/test/heading_1_6.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -1,23 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="header" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $" xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Header</title> <anchor id="header.header_test"/>
+ <title>Header</title>
   <bridgehead renderas="sect2" id="header.h0">
- <link linkend="header.header_test">Header Test</link>
+ <phrase id="header.header_test"/><link linkend="header.header_test">Header Test</link>
   </bridgehead>
   <para>
     Paragraph.
   </para>
- <anchor id="header.heading_id"/>
   <bridgehead renderas="sect2" id="header.h1">
- <link linkend="header.heading_id">Heading with an id</link>
+ <phrase id="header.heading_id"/><link linkend="header.heading_id">Heading with
+ an id</link>
   </bridgehead>
   <para>
     Paragraph.
   </para>
- <anchor id="header.heading_id2"/>
   <bridgehead renderas="sect3" id="header.h2">
- <link linkend="header.heading_id2">Heading with an id</link>
+ <phrase id="header.heading_id2"/><link linkend="header.heading_id2">Heading with
+ an id</link>
   </bridgehead>
   <para>
     Paragraph.

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-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -2,18 +2,19 @@
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="identifiers_in_quickbook_1_5" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
  xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Identifiers in quickbook 1.5</title> <anchor id="identifiers_in_quickbook_1_5.test_heading_with__code__phrase_role__identifier__code__phrase___code_"/>
+ <title>Identifiers in quickbook 1.5</title>
   <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_5.h0">
- <link linkend="identifiers_in_quickbook_1_5.test_heading_with__code__phrase_role__identifier__code__phrase___code_">Test
+ <phrase id="identifiers_in_quickbook_1_5.test_heading_with__code__phrase_role__identifier__code__phrase___code_"/><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.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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10_0"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10_1"/><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>
@@ -26,549 +27,548 @@
       </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
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/><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.h4">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d0">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d0"/><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.h5">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/><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.h6">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d1">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d1"/><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.h7">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d2">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d2"/><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.h8">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d3">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d3"/><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.h9">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d5">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d5"/><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.h10">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d6">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d6"/><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.h11">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d7">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d7"/><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.h12">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/><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.h13">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d8">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d8"/><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.h14">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d9">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d9"/><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.h15">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_0">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_0"/><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.h16">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_1">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_1"/><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.h17">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_2">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_2"/><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.h18">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_3">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_3"/><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.h19">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_4">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_4"/><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.h20">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_5">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_5"/><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.h21">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_6">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_6"/><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.h22">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_7">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_7"/><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.h23">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_8">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_8"/><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.h24">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_9">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_9"/><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.h25">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_10">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_10"/><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.h26">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_11">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_11"/><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.h27">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_12">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_12"/><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.h28">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_13">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_13"/><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.h29">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_14">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_14"/><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.h30">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_16">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_16"/><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.h31">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_17">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_17"/><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.h32">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_18">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_18"/><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.h33">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_19">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_19"/><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.h34">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_20">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_20"/><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.h35">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_21">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_21"/><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.h36">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_22">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_22"/><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.h37">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_23">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_23"/><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.h38">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_24">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_24"/><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.h39">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_25">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_25"/><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.h40">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_26">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_26"/><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.h41">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/><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.h42">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_27">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_27"/><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.h43">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_28">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_28"/><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.h44">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_29">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_29"/><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.h45">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d4">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_d4"/><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.h46">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_15">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_15"/><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.h47">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_30">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_30"/><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.h48">
- <link linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_31">Generate
+ <phrase id="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_31"/><link
+ linkend="identifiers_in_quickbook_1_5.generate_a_really_long_id_and_31">Generate
     a really long id and 15</link>
   </bridgehead>
- <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>
+ <phrase id="identifiers_in_quickbook_1_5.a2345678901234567890123456789012"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.a0"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcdef"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde0"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde1"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.abcdefghijklmnopqrstuvwxyzabcde2"/><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
+ <phrase id="identifiers_in_quickbook_1_5.markup_in__code__phrase_role__identifier__heading__phrase___code___in__emphasis_role__bold__order__emphasis__to_test_normalization"/><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
+ <phrase id="identifiers_in_quickbook_1_5.markup_in_code_phrase_role_iden0"/><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
+ <phrase id="identifiers_in_quickbook_1_5.markup_in_code_phrase_role_iden1"/><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"/>
+ 10</link></title>
     <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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d0"/><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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d1"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d2"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d3"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d5"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d6"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d7"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d8"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d9"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_0"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_1"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_2"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_3"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_4"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_5"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_6"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_7"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_8"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_9"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_10"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_11"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_12"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_13"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_14"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_16"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_17"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_18"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_19"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_20"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_21"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_22"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_23"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_24"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_25"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_26"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_27"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_28"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_29"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_d4"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_15"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_30"/><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.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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.generate_a_really_long_id_and_31"/><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.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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.a2345678901234567890123456789012"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.a0"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcdef"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde0"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde1"/><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>
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.abcdefghijklmnopqrstuvwxyzabcde2"/><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
+ <phrase 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"/><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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.markup_in_code_phrase_role_iden0"/><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
+ <phrase id="identifiers_in_quickbook_1_5.identifier_10.markup_in_code_phrase_role_iden1"/><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>
@@ -597,14 +597,14 @@
   </section>
   <section id="identifiers_in_quickbook_1_5.punctuation___stuff">
     <title><link linkend="identifiers_in_quickbook_1_5.punctuation___stuff">Punctuation
- &amp; stuff</link></title> <anchor id="identifiers_in_quickbook_1_5.punctuation___stuff.a___b"/>
+ &amp; stuff</link></title>
     <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.punctuation___stuff.h0">
- <link linkend="identifiers_in_quickbook_1_5.punctuation___stuff.a___b">A +
- B</link>
+ <phrase id="identifiers_in_quickbook_1_5.punctuation___stuff.a___b"/><link
+ linkend="identifiers_in_quickbook_1_5.punctuation___stuff.a___b">A + B</link>
     </bridgehead>
- <anchor id="identifiers_in_quickbook_1_5.punctuation___stuff.a_b0"/>
     <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_5.punctuation___stuff.h1">
- <link linkend="identifiers_in_quickbook_1_5.punctuation___stuff.a_b0">A + B</link>
+ <phrase id="identifiers_in_quickbook_1_5.punctuation___stuff.a_b0"/><link linkend="identifiers_in_quickbook_1_5.punctuation___stuff.a_b0">A
+ + B</link>
     </bridgehead>
   </section>
 </article>

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-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -2,18 +2,18 @@
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="identifiers_in_quickbook_1_6" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
  xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Identifiers in quickbook 1.6</title> <anchor id="identifiers_in_quickbook_1_6.test_heading_with__code_"/>
+ <title>Identifiers in quickbook 1.6</title>
   <bridgehead renderas="sect2" id="identifiers_in_quickbook_1_6.h0">
- <link linkend="identifiers_in_quickbook_1_6.test_heading_with__code_">Test heading
- with <code><phrase role="identifier">code</phrase></code></link>
+ <phrase id="identifiers_in_quickbook_1_6.test_heading_with__code_"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10_0"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10_1"/><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>
@@ -26,549 +26,548 @@
       </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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d0"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d1"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d2"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d3"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d5"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d6"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d7"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d8"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d9"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_0"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_1"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_2"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_3"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_4"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_5"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_6"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_7"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_8"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_9"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_10"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_11"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_12"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_13"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_14"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_16"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_17"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_18"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_19"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_20"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_21"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_22"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_23"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_24"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_25"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_26"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_27"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_28"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_29"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_d4"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_15"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_30"/><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
+ <phrase id="identifiers_in_quickbook_1_6.generate_a_really_long_id_and_31"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.a2345678901234567890123456789012"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.a0"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcdef"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde0"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde1"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.abcdefghijklmnopqrstuvwxyzabcde2"/><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
+ <phrase id="identifiers_in_quickbook_1_6.markup_in__heading___in__order__to_test_normalization"/><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
+ <phrase id="identifiers_in_quickbook_1_6.markup_in_heading_in_order_to_t0"/><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
+ <phrase id="identifiers_in_quickbook_1_6.markup_in_heading_in_order_to_t1"/><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"/>
+ 10</link></title>
     <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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_several_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d0"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_lots_of_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d1"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d2"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d3"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d5"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d6"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d7"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_too_many_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d8"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d9"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_0"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_1"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_2"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_3"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_4"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_5"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_6"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_7"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_8"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_9"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_10"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_11"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_12"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_13"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_14"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_16"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_17"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_18"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_19"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_20"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_21"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_22"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_23"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_24"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_25"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_26"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_duplicate_it_by_having_even_more_headers"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_27"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_28"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_29"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_d4"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_15"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_30"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.generate_a_really_long_id_and_31"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.a2345678901234567890123456789012"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.a0"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcdef"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde0"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde1"/><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>
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.abcdefghijklmnopqrstuvwxyzabcde2"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.markup_in__heading___in__order__to_test_normalization"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.markup_in_heading_in_order_to_t0"/><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
+ <phrase id="identifiers_in_quickbook_1_6.identifier_10.markup_in_heading_in_order_to_t1"/><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>
@@ -597,14 +596,14 @@
   </section>
   <section id="identifiers_in_quickbook_1_6.punctuation___stuff">
     <title><link linkend="identifiers_in_quickbook_1_6.punctuation___stuff">Punctuation
- &amp; stuff</link></title> <anchor id="identifiers_in_quickbook_1_6.punctuation___stuff.a___b"/>
+ &amp; stuff</link></title>
     <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.punctuation___stuff.h0">
- <link linkend="identifiers_in_quickbook_1_6.punctuation___stuff.a___b">A +
- B</link>
+ <phrase id="identifiers_in_quickbook_1_6.punctuation___stuff.a___b"/><link
+ linkend="identifiers_in_quickbook_1_6.punctuation___stuff.a___b">A + B</link>
     </bridgehead>
- <anchor id="identifiers_in_quickbook_1_6.punctuation___stuff.a_b0"/>
     <bridgehead renderas="sect3" id="identifiers_in_quickbook_1_6.punctuation___stuff.h1">
- <link linkend="identifiers_in_quickbook_1_6.punctuation___stuff.a_b0">A + B</link>
+ <phrase id="identifiers_in_quickbook_1_6.punctuation___stuff.a_b0"/><link linkend="identifiers_in_quickbook_1_6.punctuation___stuff.a_b0">A
+ + B</link>
     </bridgehead>
   </section>
 </article>

Modified: trunk/tools/quickbook/test/quickbook-manual.gold
==============================================================================
--- trunk/tools/quickbook/test/quickbook-manual.gold (original)
+++ trunk/tools/quickbook/test/quickbook-manual.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -102,10 +102,10 @@
     </itemizedlist>
   </section>
   <section id="quickbook.change_log">
- <title><link linkend="quickbook.change_log">Change Log</link></title> <anchor
- id="quickbook.change_log.version_1_3"/>
+ <title><link linkend="quickbook.change_log">Change Log</link></title>
     <bridgehead renderas="sect3" id="quickbook.change_log.h0">
- <link linkend="quickbook.change_log.version_1_3">Version 1.3</link>
+ <phrase id="quickbook.change_log.version_1_3"/><link linkend="quickbook.change_log.version_1_3">Version
+ 1.3</link>
     </bridgehead>
     <itemizedlist>
       <listitem>
@@ -1706,29 +1706,29 @@
 [h5 Heading 5]
 [h6 Heading 6]
 <!--quickbook-escape-postfix--></programlisting>
- <anchor id="quickbook.syntax.block.headings.heading_1"/>
         <bridgehead renderas="sect1" id="quickbook.syntax.block.headings.h0">
- <link linkend="quickbook.syntax.block.headings.heading_1">Heading 1</link>
+ <phrase id="quickbook.syntax.block.headings.heading_1"/><link linkend="quickbook.syntax.block.headings.heading_1">Heading
+ 1</link>
         </bridgehead>
- <anchor id="quickbook.syntax.block.headings.heading_2"/>
         <bridgehead renderas="sect2" id="quickbook.syntax.block.headings.h1">
- <link linkend="quickbook.syntax.block.headings.heading_2">Heading 2</link>
+ <phrase id="quickbook.syntax.block.headings.heading_2"/><link linkend="quickbook.syntax.block.headings.heading_2">Heading
+ 2</link>
         </bridgehead>
- <anchor id="quickbook.syntax.block.headings.heading_3"/>
         <bridgehead renderas="sect3" id="quickbook.syntax.block.headings.h2">
- <link linkend="quickbook.syntax.block.headings.heading_3">Heading 3</link>
+ <phrase id="quickbook.syntax.block.headings.heading_3"/><link linkend="quickbook.syntax.block.headings.heading_3">Heading
+ 3</link>
         </bridgehead>
- <anchor id="quickbook.syntax.block.headings.heading_4"/>
         <bridgehead renderas="sect4" id="quickbook.syntax.block.headings.h3">
- <link linkend="quickbook.syntax.block.headings.heading_4">Heading 4</link>
+ <phrase id="quickbook.syntax.block.headings.heading_4"/><link linkend="quickbook.syntax.block.headings.heading_4">Heading
+ 4</link>
         </bridgehead>
- <anchor id="quickbook.syntax.block.headings.heading_5"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.headings.h4">
- <link linkend="quickbook.syntax.block.headings.heading_5">Heading 5</link>
+ <phrase id="quickbook.syntax.block.headings.heading_5"/><link linkend="quickbook.syntax.block.headings.heading_5">Heading
+ 5</link>
         </bridgehead>
- <anchor id="quickbook.syntax.block.headings.heading_6"/>
         <bridgehead renderas="sect6" id="quickbook.syntax.block.headings.h5">
- <link linkend="quickbook.syntax.block.headings.heading_6">Heading 6</link>
+ <phrase id="quickbook.syntax.block.headings.heading_6"/><link linkend="quickbook.syntax.block.headings.heading_6">Heading
+ 6</link>
         </bridgehead>
         <para>
           Headings 1-3 [h1 h2 and h3] will automatically have anchors with normalized
@@ -1971,9 +1971,9 @@
 
 ]
 <!--quickbook-escape-postfix--></programlisting>
- <anchor id="quickbook.syntax.block.templates.template_identifier"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.templates.h0">
- <link linkend="quickbook.syntax.block.templates.template_identifier">Template
+ <phrase id="quickbook.syntax.block.templates.template_identifier"/><link
+ linkend="quickbook.syntax.block.templates.template_identifier">Template
           Identifier</link>
         </bridgehead>
         <para>
@@ -1993,9 +1993,9 @@
             </simpara>
           </listitem>
         </itemizedlist>
- <anchor id="quickbook.syntax.block.templates.formal_template_arguments"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.templates.h1">
- <link linkend="quickbook.syntax.block.templates.formal_template_arguments">Formal
+ <phrase id="quickbook.syntax.block.templates.formal_template_arguments"/><link
+ linkend="quickbook.syntax.block.templates.formal_template_arguments">Formal
           Template Arguments</link>
         </bridgehead>
         <para>
@@ -2013,9 +2013,8 @@
           and <literal>what</literal> are actually templates that exist in the duration
           of the template call.
         </para>
- <anchor id="quickbook.syntax.block.templates.template_body"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.templates.h2">
- <link linkend="quickbook.syntax.block.templates.template_body">Template
+ <phrase id="quickbook.syntax.block.templates.template_body"/><link linkend="quickbook.syntax.block.templates.template_body">Template
           Body</link>
         </bridgehead>
         <para>
@@ -2040,9 +2039,9 @@
           Phrase templates are typically expanded as part of phrases. Like macros,
           block level elements are not allowed in phrase templates.
         </para>
- <anchor id="quickbook.syntax.block.templates.template_expansion"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.templates.h3">
- <link linkend="quickbook.syntax.block.templates.template_expansion">Template
+ <phrase id="quickbook.syntax.block.templates.template_expansion"/><link
+ linkend="quickbook.syntax.block.templates.template_expansion">Template
           Expansion</link>
         </bridgehead>
         <para>
@@ -2083,10 +2082,9 @@
           are separated by the double dot <literal>&quot;..&quot;</literal> and terminated
           by the close parenthesis.
         </para>
- <anchor id="quickbook.syntax.block.templates.nullary_templates"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.templates.h4">
- <link linkend="quickbook.syntax.block.templates.nullary_templates">Nullary
- Templates</link>
+ <phrase id="quickbook.syntax.block.templates.nullary_templates"/><link
+ linkend="quickbook.syntax.block.templates.nullary_templates">Nullary Templates</link>
         </bridgehead>
         <para>
           Nullary templates look and act like simple macros. Example:
@@ -2176,9 +2174,8 @@
           You have a couple of ways to do it. I personally prefer the explicit empty
           brackets, though.
         </para>
- <anchor id="quickbook.syntax.block.templates.simple_arguments"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.templates.h5">
- <link linkend="quickbook.syntax.block.templates.simple_arguments">Simple
+ <phrase id="quickbook.syntax.block.templates.simple_arguments"/><link linkend="quickbook.syntax.block.templates.simple_arguments">Simple
           Arguments</link>
         </bridgehead>
         <para>
@@ -2251,9 +2248,9 @@
         <para>
           what do you think man?
         </para>
- <anchor id="quickbook.syntax.block.templates.punctuation_templates"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.templates.h6">
- <link linkend="quickbook.syntax.block.templates.punctuation_templates">Punctuation
+ <phrase id="quickbook.syntax.block.templates.punctuation_templates"/><link
+ linkend="quickbook.syntax.block.templates.punctuation_templates">Punctuation
           Templates</link>
         </bridgehead>
         <para>
@@ -2655,9 +2652,8 @@
         <para>
           QuickBook's import facility provides a nice solution.
         </para>
- <anchor id="quickbook.syntax.block.import.example"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.import.h0">
- <link linkend="quickbook.syntax.block.import.example">Example</link>
+ <phrase id="quickbook.syntax.block.import.example"/><link linkend="quickbook.syntax.block.import.example">Example</link>
         </bridgehead>
         <para>
           You can effortlessly import code snippets from source code into your QuickBook.
@@ -2733,9 +2729,8 @@
         <para>
           Some trailing text here
         </para>
- <anchor id="quickbook.syntax.block.import.code_snippet_markup"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.import.h1">
- <link linkend="quickbook.syntax.block.import.code_snippet_markup">Code
+ <phrase id="quickbook.syntax.block.import.code_snippet_markup"/><link linkend="quickbook.syntax.block.import.code_snippet_markup">Code
           Snippet Markup</link>
         </bridgehead>
         <para>
@@ -2755,9 +2750,8 @@
           The comment <code><phrase role="comment">//]</phrase></code> ends a code-snippet
           This too will not be visible in quickbook.
         </para>
- <anchor id="quickbook.syntax.block.import.special_comments"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.import.h2">
- <link linkend="quickbook.syntax.block.import.special_comments">Special
+ <phrase id="quickbook.syntax.block.import.special_comments"/><link linkend="quickbook.syntax.block.import.special_comments">Special
           Comments</link>
         </bridgehead>
         <para>
@@ -2778,9 +2772,8 @@
           slash-slash, tick and white-space shall be ignored. In the second, the
           initial slash-star-tick and the final star-slash shall be ignored.
         </para>
- <anchor id="quickbook.syntax.block.import.callouts"/>
         <bridgehead renderas="sect5" id="quickbook.syntax.block.import.h3">
- <link linkend="quickbook.syntax.block.import.callouts">Callouts</link>
+ <phrase id="quickbook.syntax.block.import.callouts"/><link linkend="quickbook.syntax.block.import.callouts">Callouts</link>
         </bridgehead>
         <para>
           Special comments of the form:
@@ -3146,9 +3139,9 @@
   </section>
   <section id="quickbook.faq">
     <title><link linkend="quickbook.faq">Frequently Asked Questions</link></title>
- <anchor id="quickbook.faq.can_i_use_quickbook_for_non_boost_documentation_"/>
     <bridgehead renderas="sect3" id="quickbook.faq.h0">
- <link linkend="quickbook.faq.can_i_use_quickbook_for_non_boost_documentation_">Can
+ <phrase id="quickbook.faq.can_i_use_quickbook_for_non_boost_documentation_"/><link
+ linkend="quickbook.faq.can_i_use_quickbook_for_non_boost_documentation_">Can
       I use QuickBook for non-Boost documentation?</link>
     </bridgehead>
     <para>

Modified: trunk/tools/quickbook/test/template-section.gold
==============================================================================
--- trunk/tools/quickbook/test/template-section.gold (original)
+++ trunk/tools/quickbook/test/template-section.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -11,9 +11,8 @@
     <para>
       Hello.
     </para>
- <anchor id="section_in_a_template.test.just_to_test_id_generation"/>
     <bridgehead renderas="sect3" id="section_in_a_template.test.h0">
- <link linkend="section_in_a_template.test.just_to_test_id_generation">Just
+ <phrase id="section_in_a_template.test.just_to_test_id_generation"/><link linkend="section_in_a_template.test.just_to_test_id_generation">Just
       to test id generation</link>
     </bridgehead>
     <para>

Modified: trunk/tools/quickbook/test/unicode-escape.gold
==============================================================================
--- trunk/tools/quickbook/test/unicode-escape.gold (original)
+++ trunk/tools/quickbook/test/unicode-escape.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="utf_8_test" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $" xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>UTF-8 test</title> <anchor id="utf_8_test.i__xf1_t__xeb_rn__xe2_ti__xf4_n__xe0_liz__xe6_ti__xf8_n"/>
+ <title>UTF-8 test</title>
   <bridgehead renderas="sect2" id="utf_8_test.h0">
- <link linkend="utf_8_test.i__xf1_t__xeb_rn__xe2_ti__xf4_n__xe0_liz__xe6_ti__xf8_n">I&#xF1;t&#xEB;rn&#xE2;ti&#xF4;n&#xE0;liz&#xE6;ti&#xF8;n</link>
+ <phrase id="utf_8_test.i__xf1_t__xeb_rn__xe2_ti__xf4_n__xe0_liz__xe6_ti__xf8_n"/><link
+ linkend="utf_8_test.i__xf1_t__xeb_rn__xe2_ti__xf4_n__xe0_liz__xe6_ti__xf8_n">I&#xF1;t&#xEB;rn&#xE2;ti&#xF4;n&#xE0;liz&#xE6;ti&#xF8;n</link>
   </bridgehead>
   <itemizedlist>
     <listitem>

Modified: trunk/tools/quickbook/test/utf-8-bom.gold
==============================================================================
--- trunk/tools/quickbook/test/utf-8-bom.gold (original)
+++ trunk/tools/quickbook/test/utf-8-bom.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="utf_8_test" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $" xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>UTF-8 test</title> <anchor id="utf_8_test.i__t__rn__ti__n__liz__ti__n"/>
+ <title>UTF-8 test</title>
   <bridgehead renderas="sect2" id="utf_8_test.h0">
- <link linkend="utf_8_test.i__t__rn__ti__n__liz__ti__n">Iñtërnâtiônàlizætiøn</link>
+ <phrase id="utf_8_test.i__t__rn__ti__n__liz__ti__n"/><link linkend="utf_8_test.i__t__rn__ti__n__liz__ti__n">Iñtërnâtiônàlizætiøn</link>
   </bridgehead>
   <itemizedlist>
     <listitem>

Modified: trunk/tools/quickbook/test/utf-8.gold
==============================================================================
--- trunk/tools/quickbook/test/utf-8.gold (original)
+++ trunk/tools/quickbook/test/utf-8.gold 2011-09-11 12:58:14 EDT (Sun, 11 Sep 2011)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
 <article id="utf_8_test" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $" xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>UTF-8 test</title> <anchor id="utf_8_test.i__t__rn__ti__n__liz__ti__n"/>
+ <title>UTF-8 test</title>
   <bridgehead renderas="sect2" id="utf_8_test.h0">
- <link linkend="utf_8_test.i__t__rn__ti__n__liz__ti__n">Iñtërnâtiônàlizætiøn</link>
+ <phrase id="utf_8_test.i__t__rn__ti__n__liz__ti__n"/><link linkend="utf_8_test.i__t__rn__ti__n__liz__ti__n">Iñtërnâtiônàlizætiøn</link>
   </bridgehead>
   <itemizedlist>
     <listitem>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk