473,394 Members | 1,738 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

quote, unquote

Greetings one and all.

The mark up for quoted speech or, in this case, feedback is bugging me. I'm
currently using a list (<ul>...) to mark up the comments, but I feel I could
be doing more (or less) to make it clear that these are feedback comments.

Is there a useful primer or reference doc? or perhaps a clue someone would
like to share?

Thanks.
--
William Tasso
Jul 20 '05 #1
5 3362
On Tue, 11 Nov 2003 14:15:00 +0200, William Tasso <"William Tasso"
<ne****@tbdata.com>> wrote:
Greetings one and all.

The mark up for quoted speech or, in this case, feedback is bugging me.
I'm currently using a list (<ul>...) to mark up the comments, but I feel
I could be doing more (or less) to make it clear that these are feedback
comments.

Is there a useful primer or reference doc? or perhaps a clue someone
would like to share?


Isn't that what <blockquote> is for?

Ciao

Zak
--
================================================== ======================
http://www.carfolio.com/ Searchable database of 10 000+ car specs
Auctioning motoring-related items at eBay? http://www.carfolio.com/ebay/
================================================== ======================
Jul 20 '05 #2
CJM

"William Tasso" <ne****@tbdata.com> wrote in message
news:bo*************@ID-139074.news.uni-berlin.de...
Greetings one and all.

The mark up for quoted speech or, in this case, feedback is bugging me. I'm currently using a list (<ul>...) to mark up the comments, but I feel I could be doing more (or less) to make it clear that these are feedback comments.

Is there a useful primer or reference doc? or perhaps a clue someone would like to share?

Thanks.
--
William Tasso

William

I've got a horrible feeling I've misunderstood you(!)

Isn't the <blockquote> (and potentially <q>) the appropriate tag(s) for
this?
[personally I tend to style the tag as italics or use a different font as
well]

Is this a rare moment of insight for me, or have I missed the point again as
usual? lol

Cheer

Chris
Jul 20 '05 #3
m
William Tasso wrote:
Greetings one and all.

The mark up for quoted speech or, in this case, feedback is bugging me. I'm
currently using a list (<ul>...) to mark up the comments, but I feel I could
be doing more (or less) to make it clear that these are feedback comments.

Is there a useful primer or reference doc? or perhaps a clue someone would
like to share?

Thanks.


I think that Zak and CJM are right about 'blockquote',
although I don't see why 'blockquote' and 'cite' can't
be embedded within a list of comments if you want.
Depending on how you nest things you might have to
change the 'display' style of some elements to get
a validation.

--
Cheers, m at http://www.mbstevens.com/

Jul 20 '05 #4
William Tasso wrote:

The mark up for quoted speech or, in this case, feedback ....
Thank you. <blockquote> has indeed passed me by, as some guessed.

Is there a useful primer or reference doc?


Prompted by the responses, I found this splendid work by Jukka
http://www.cs.tut.fi/~jkorpela/html/bq.html and now, having read it top to
bottom, I am inclined to leave the list of feedback comments marked up as a
list using CSS to suggest italics &c for presentation.

--
William Tasso - http://WilliamTasso.com
Jul 20 '05 #5
Zak McGregor wrote:
On Tue, 11 Nov 2003 14:15:00 +0200, William Tasso <"William Tasso"
<ne****@tbdata.com>> wrote:
Greetings one and all.

The mark up for quoted speech or, in this case, feedback is bugging me.
I'm currently using a list (<ul>...) to mark up the comments, but I feel
I could be doing more (or less) to make it clear that these are feedback
comments.

Is there a useful primer or reference doc? or perhaps a clue someone
would like to share?


Isn't that what <blockquote> is for?

Ciao

Zak
--
================================================== ======================
http://www.carfolio.com/ Searchable database of 10 000+ car specs
Auctioning motoring-related items at eBay? http://www.carfolio.com/ebay/
================================================== ======================


I'm not sure what you are doing, but you may also want to consider using a
definition list. If you are presenting feedback to some sort of
questionnaire you could list the question in a <dt> item and then all of
the feedback in a <dd> item. That would give you an interesting indentation
for your page.

--George
Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
4
by: orbstra | last post by:
<?php //Variables //Quotes $quote = "'If at first you don't succeed; call it version 1.0' - T-Shirt"; $quote = "Microsoft: 'You`ve got questions. We've got dancing paperclips.' - Unknown";...
13
by: Shaun Furlong | last post by:
I'm new to this group - and newsgroups in general - so I aplogize if I'm out of line here... I'm a web designer, but not proficient in JS. I need a quote for a simple "Density Calculator" in...
3
by: nyenyec | last post by:
urllib.quote chokes on unicode in 2.4.4. 2.4.4 (#1, Oct 18 2006, 10:34:39) Traceback (most recent call last): File "<stdin>", line 1, in ? File...
1
by: John Nagle | last post by:
The code in urllib.quote fails on Unicode input, when called by robotparser. That bit of code needs some attention. - It still assumes ASCII goes up to 255, which hasn't been true in Python for...
10
by: =?Utf-8?B?Qm9iQWNoZ2lsbA==?= | last post by:
How can I use a quote as a literal so it does get confused as not a literal? Thanks! Bob
3
by: Rajesh | last post by:
Have you guys wanted to have stock tickers on ur desktop/ web pages, but can't use applets as they were heavy, too much configuration than here is one approach and light weight solution all for...
4
by: wxPythoner | last post by:
There's a thing that bugs me in Python. Look at this... SyntaxError: EOL while scanning single-quoted string Please focus on the part of the error message that states "while scanning...
3
by: rajmohan.h | last post by:
Hi all, Suppose I have a string which contains quotes inside quotes - single and double quotes interchangeably - s = "a1' b1 " c1' d1 ' c2" b2 'a2" I need to start at b1 and end at b2 - i.e. I...
9
by: WebArchitect | last post by:
I have a text file. My text file contains lines with double quotes around it. I trying to code if a line has double quotes around it Then make it bold My code is below and it is not working....
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.