- From: Tim Chadwick <TChadwick@cstlink.com>
- Date: Wed, 25 Sep 2002 11:03:24 -0400
- To: <html-tidy@w3.org>
- Message-ID: <07D4D31324C87742B85778F6B3EC2344014BC8@mail1.hq.cstlink.com>
Hello All:
My problem is that I can't find the correct settings to stop a new line
being inserted after certain tags
This is what I send tidy, and is also what I want the return to look
like:
<head>
<link rel="schema.DC"
href="http://purl.org/dc/elements/1.1/"/>
<link rel="schema.DCTERMS"
href="http://purl.org/dc/terms/"/>
<meta name="DC.identifier"
content="aeb80d5e-1d5c-6283-16a6-8daa07f07817.xml"/>
<meta name="DC.title" content="Click Here"/>
</head>
<BODY>
<P>lkjg <B>fkhf</B>
</P>
</BODY>
and this is what is returned:
<head>
<link rel="schema.DC"
href="http://purl.org/dc/elements/1.1/"/>
<link rel="schema.DCTERMS"
href="http://purl.org/dc/terms/"/>
<meta name="DC.identifier"
content="aeb80d5e-1d5c-6283-16a6-8daa07f07817.xml"/>
<meta name="DC.title" content="Click Here"/>
</head>
<BODY>
<P>lkjg
<B>fkhf</B>
</P>
</BODY>
the extra lines within the head are not a huge deal... but the <B>
element being dropped down a line is unacceptable for my application
My Tidy configuration is:
// HTML Tidy configuration file created by TidyGUI
doctype: loose
tidy-mark: no
input-xml: yes
output-xml: yes
output-xhtml: no
assume-xml-procins: yes
quote-marks: yes
quote-nbsp: no
drop-empty-paras: yes
indent: no
wrap: 0
any input is appreciated
thanks!
Received on Wednesday, 25 September 2002 11:04:37 UTC