How I imagine the markup to be is something like this
<p>This is the start of the text<q>and this is the start of the
quotation</q></p><p><q>this is the end of the quotation</q> and some more
text</p>
Off the top of my head I would use something like this css
q{
quotes: '"' '"';
}
q:last-child{
quotes: '"' '';
}
Unfortunately, the :last-child psuedo class does not take into account text
nodes after the elements. Which would mean that inserting a class to signify
the no-end quotes would be needed.
<style>
.multi-paragraph{
quotes: '"' '';
}
</style>
<p>This is the start of the text<q class="multi-paragraph">and this is the
start of the quotation</q></p><p><q>this is the end of the quotation</q> and
some more text</p>
Can anyone else think of a way to do this without the class injection?
2009/10/1 Savl Ekk <[email protected]>
> Maybe 'blockquote' tag? And some styles to it.
>
> 2009/10/1 Robert Turner <[email protected]>
>
> There is " and ', but I don't think IE supports '. I think
>> the Unicode entity is something like ' or %. You could also declare
>> quot as an entity in your doctype to assist IE (IE needs help).
>>
>> Would that solve your problem?
>>
>>
>> T. R. Valentine wrote:
>>
>> Quotations which are more than one paragraph in length are supposed to
>> get opening quotation marks for each paragraph and only a single
>> closing quotation mark at the very end (in English). It does not seem
>> this can be done using semantic markup, i.e. q tags. Is there some way
>> to use q tags and get the UA to stop treating each paragraph as a new
>> nested quote?
>>
>>
>>
>>
>>
>> --
>> *Rob Turner*
>> Founder
>>
>> www. f l e x a d a t a .com <http://flexadata.com>
>> ------------------------------
>> *+1 415 448 7652*
>> *+61 7 3040 1337*
>>
>>
>>
>>
>> *******************************************************************
>> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
>> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
>> Help: [email protected]
>> *******************************************************************
>>
>
>
> *******************************************************************
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: [email protected]
> *******************************************************************
>
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [email protected]
*******************************************************************