Changes between Version 5 and Version 6 of BoostDocs/Quickbook-1.5


Ignore:
Timestamp:
Oct 11, 2009, 12:17:44 PM (13 years ago)
Author:
Daniel James
Comment:

Some more changes.

Legend:

Unmodified
Added
Removed
Modified
  • BoostDocs/Quickbook-1.5

    v5 v6  
    124124Would all be equivalent.
    125125
    126 == Other Tickets ==
     126=== Image Attributes ===
    127127
    128 #1157, #1202, #2712
     128#1157
     129
     130Give images attributes using the notation:
     131{{{
     132[$image_path
     133    [format ...] [width ...] [srccredit ...] [contentdepth ...] [contentwidth ...]
     134    [scalefit ...] [align ...] [valign ...] [depth ...] [scale ...]
     135]
     136}}}
     137
     138An example from my tests:
     139
     140{{{
     141    [$test.gif [width 10cm] [height 10cm]]
     142}}}
     143
     144This also supports a HTML style 'alt' attribute:
     145
     146{{{
     147    [$ball.gif [alt A ball]]
     148}}}
     149
     150which generates docbook along the lines of:
     151
     152{{{
     153<inlinemediaobject>
     154    <imageobject><imagedata fileref="test.gif"></imagedata></imageobject>
     155    <textobject><phrase>A ball</phrase></textobject>
     156</inlinemediaobject>
     157}}}
     158
     159=== Table Ids ===
     160
     161#1194
     162http://www.nabble.com/Quickbook-table-bug--to6604943.html
     163
     164This allows you to explicity give a table an id so that it's easier to link to:
     165
     166[table:table1 Table 1
     167    [[Heading]]
     168    [[cell]]
     169]
     170
     171=== Ignoring spaces after 'section:' ===
     172
     173In this example:
     174
     175    [section: example Example section]
     176
     177Quickbook would consider the section to not have an id, and use the title 'example Example section'. In 1.5 documents the id would be 'example', and the title 'Example section' which I think is less confusing.
     178
     179This lead to some confusion in #2712.
     180
     181