Re: [xsl] multi-paragraph blockquotes

Subject: Re: [xsl] multi-paragraph blockquotes
From: Colin Paul Adams <colin@xxxxxxxxxxxxxxxxxx>
Date: 06 May 2005 16:45:52 +0100
>>>>> "JBryant" == JBryant  <JBryant@xxxxxxxxx> writes:

    JBryant> The result appeared properly indented in IE 6, Firefox
    JBryant> 1.0.1, and Opera 7.54. To get proper XHTML, you'll need
    JBryant> to adjust the stylesheet, but the concept seems to work
    JBryant> (if I understand what you want).

Specifically, <p> cannot contain block content, whereas blockquote
can.

It seems to me best to translate:

<para>Some text:
   <blockquote>
     <para>One paragraph.</para>
     <para>Another paragraph.</para>
   </blockquote>
</para>


as:

<div>
 <p>Some text:</p>
 <blockquote>
  <p>One paragraph.</p>

etc. and adjust the templates accordingly.
-- 
Colin Paul Adams
Preston Lancashire

Current Thread