docbook-apps

  • 1.  list pulled out of containing para in html output

    Posted 06-10-2009 14:19
    Using the 1.72.0 html xsls with para.propagates.style=1 using saxon 6.5
    if I do:

    <para role="client">Some intro text:
    <itemizedlist>
    <listitem>
    <para>My listitem</para>
    </listitem>
    </itemizedlist>
    </para>

    In the output, the ul is pulled out of the containing para:

    Some intro text:


    • My listitem



    So I lose the ability to use the class to style the text with my css. Is
    this a bug or some feature I don't understand?

    Thanks,
    David



  • 2.  Re: [docbook-apps] list pulled out of containing para in html output

    Posted 06-10-2009 14:35
    David Cramer schrieb:
    > Using the 1.72.0 html xsls with para.propagates.style=1 using saxon 6.5
    > if I do:
    >
    > <para role="client">Some intro text:
    > <itemizedlist>
    > <listitem>
    > <para>My listitem</para>
    > </listitem>
    > </itemizedlist>
    > </para>
    >
    > In the output, the ul is pulled out of the containing para:
    >
    >

    Some intro text:


    >
    • My listitem


    >
    > So I lose the ability to use the class to style the text with my css. Is
    > this a bug or some feature I don't understand?

    That is because
      is a block-level element.
      Block-level elements are not allowed inside

      .

      I think with make.valid.html=0 and/or html.cleanup=0 the stylesheets
      don't unwrap your

        (but leave you with invalid HTML of course).

        I cannot comment on whether the class should be propagated to the


  • 3.  RE: [docbook-apps] list pulled out of containing para in html output

    Posted 06-10-2009 14:54
    >


  • 4.  Re: [docbook-apps] list pulled out of containing para in html output

    Posted 06-10-2009 14:59
    On Wed, Jun 10, 2009 at 7:18 AM, David Cramer<dcramer@motive.com> wrote:
    > Using the 1.72.0 html xsls

    1.72.0 was released 869 days ago. While I'm not certain your issue
    would be fixed, it would probably be easier to answer questions if you
    were using a more recent version of the stylesheets. Are you able to
    upgrade?


    Thanks,
    Keith



  • 5.  RE: [docbook-apps] list pulled out of containing para in html output

    Posted 06-10-2009 15:13
    I have elaborate customization layers for several different output types
    (monolithic html, chunked html, chm, eclipse, two flavors of pdf) so I
    dread the merge pain and debugging of upgrading, but you're right, 2.5
    years is long enough.

    Thanks,
    David

    >