diff options
| author | Ralph Amissah <ralph@amissah.com> | 2013-12-09 22:29:17 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2013-12-09 22:29:17 -0500 | 
| commit | c8321f5f81808f49c44bd5e96b8c49f74b31f699 (patch) | |
| tree | b0989944bcbb973ef2337e0bb400f32484af5c79 /lib | |
| parent | debian/changelog (4.2.14-1) (diff) | |
| parent | v5: docbook, structure, a fix (diff) | |
Merge tag 'sisu_4.2.15' into debian/sid
SiSU 4.2.15
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sisu/v5/xml_docbook5.rb | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/lib/sisu/v5/xml_docbook5.rb b/lib/sisu/v5/xml_docbook5.rb index d3840d18..9e02af39 100644 --- a/lib/sisu/v5/xml_docbook5.rb +++ b/lib/sisu/v5/xml_docbook5.rb @@ -213,13 +213,16 @@ module SiSU_XML_Docbook_Book              ? @chlv=o.lc.to_i              : 0              @splv=lev -            unless doc_position==:head +            tag_id=o.tags[0] ? %{ id="#{o.tags[0]}" } : '' +            if doc_position ==:head +               filename_docbook.puts  %{#{space*lev}<title#{id}>} +              doc_position=:body_and_tail +            else                filename_docbook.puts structure_build_tag_close(lev,h) -            end -            doc_position=:body_and_tail -            filename_docbook.puts  %{#{space*(lev-1)}<#{tags.docbook(lev,chlv)}> +              filename_docbook.puts  %{#{space*(lev-1)}<#{tags.docbook(lev,chlv)}#{tag_id}>  #{space*lev}<title#{id}>  } +            end              filename_docbook.puts SiSU_TextUtils::Wrap.new(o.obj + ocn,80,(@splv*2+2)).line_wrap              filename_docbook.puts %{#{space*lev}</title>}              h=lev | 
