Sha256: d54935ea2e956cb31fe94f8d73a304d193ebc4d88bbf9fb7c7005e9aff86f7bb

Contents?: true

Size: 864 Bytes

Versions: 5

Compression:

Stored size: 864 Bytes

Contents

Here are some things that we do for readability in our sources but
which actually are incorrect, and which might need to processing when
transforming our Docbook XML into other formats:

1.  Our <screen> and <programlisting> tags begin with a single stray
    newline.  We do this:

           <screen>
       This is the first line.
       This is the second line.
       </screen>

    but should do this:

           <screen>This is the first line.
       This is the second line.
       </screen>

2.  We have space between our footnote anchors and the text to which
    they apply.  We do this:

       Body text.
       <footnote>
         <para>This is footnote text.</para>
       </footnote>
       More body text.

    but should do this:

       Body text.<footnote>
         <para>This is footnote text.</para>
       </footnote>
       More body text.

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bookshop-0.0.4 lib/bookshop/generators/bookshop/app/templates/stylesheets/GOTCHAS
bookshop-0.0.3 lib/bookshop/generators/bookshop/app/templates/stylesheets/GOTCHAS
bookshop-0.0.2.1 lib/bookshop/generators/bookshop/project/templates/stylesheets/GOTCHAS
bookshop-0.0.2 lib/bookshop/generators/bookshop/project/templates/stylesheets/GOTCHAS
bookshop-0.0.1 lib/bookshop/generators/bookshop/project/templates/stylesheets/GOTCHAS