Another minor editorial change.
This commit is contained in:
parent
d193420729
commit
666d5bb1f4
|
@ -8,7 +8,7 @@
|
|||
<body>
|
||||
<h1 id="top">Quick Reference</h1>
|
||||
<h2>HTML Tidy Configuration Options</h2>
|
||||
<p>Version: <a href="https://github.com/w3c/tidy-html5/tree/c66f165">https://github.com/w3c/tidy-html5/tree/c66f165</a></p>
|
||||
<p>Version: <a href="https://github.com/w3c/tidy-html5/tree/4408516">https://github.com/w3c/tidy-html5/tree/4408516</a></p>
|
||||
<p>
|
||||
<a class="h3" href="#MarkupHeader">HTML, XHTML, XML</a>
|
||||
<br />
|
||||
|
@ -1256,7 +1256,7 @@
|
|||
<td align="right" valign="top"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This option specifies if Tidy should ensure that whitespace characters within attribute values are passed through unchanged. </td>
|
||||
<td colspan="2">This option specifies how Tidy deals with whitespace characters within attribute values. If the value is "no" (the default), Tidy "munges" or "normalizes" attribute values by replacing any newline or tab character with a single space character, and further by replacing any sequences of multiple whitespace characters with a single space. To force tidy to preserve the original, literal values of all attributes, and ensure that whitespace characters within attribute values are passed through unchanged, set this option to "yes". </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
|
@ -2038,7 +2038,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This option specifies if Tidy should line-wrap attribute values, for easier editing. Line wrapping means that if the value of an attribute causes a line to exceed the width specified by the "wrap" option, tidy will add one or more line breaks to the value, causing it to wrapped into multiple lines. Note the this option can be set independently of wrap-script-literals. Also note that by default, tidy "munges" or "normalizes" attribute values by replacing any newline or tab character with a single space character, and further by replacing any sequences of multiple whitespace characters with a single space. To force tidy to preserve the original, literal values of all attributes, and ensure that whitespace characters within attribute values are passed through unchanged, set the literal-attributes option to "no". </td>
|
||||
<td colspan="2">This option specifies if Tidy should line-wrap attribute values, for easier editing. Line wrapping means that if the value of an attribute causes a line to exceed the width specified by the "wrap" option, tidy will add one or more line breaks to the value, causing it to wrapped into multiple lines. Note that this option can be set independently of wrap-script-literals. Also note that by default, Tidy "munges" or "normalizes" attribute values by replacing any newline or tab character with a single space character, and further by replacing any sequences of multiple whitespace characters with a single space. To force Tidy to preserve the original, literal values of all attributes, and ensure that whitespace characters within attribute values are passed through unchanged, set the literal-attributes option to "yes". </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
|
|
|
@ -710,8 +710,14 @@ static const TidyOptionDoc option_docs[] =
|
|||
,TidyIndentSpacesLinks
|
||||
},
|
||||
{TidyLiteralAttribs,
|
||||
"This option specifies if Tidy should ensure that whitespace characters "
|
||||
"within attribute values are passed through unchanged. "
|
||||
"This option specifies how Tidy deals with whitespace characters within "
|
||||
"attribute values. If the value is \"no\" (the default), Tidy \"munges\" "
|
||||
"or \"normalizes\" attribute values by replacing any newline or tab "
|
||||
"character with a single space character, and further by replacing "
|
||||
"any sequences of multiple whitespace characters with a single space. "
|
||||
"To force tidy to preserve the original, literal values of all attributes, "
|
||||
"and ensure that whitespace characters within attribute values are passed "
|
||||
"through unchanged, set this option to \"yes\". "
|
||||
},
|
||||
{TidyShowMarkup,
|
||||
"This option specifies if Tidy should generate a pretty printed version "
|
||||
|
@ -751,13 +757,13 @@ static const TidyOptionDoc option_docs[] =
|
|||
"causes a line to exceed the width specified by the \"wrap\" option, "
|
||||
"tidy will add one or more line breaks to the value, causing it to "
|
||||
"wrapped into multiple lines. Note that this option can be set "
|
||||
"independently of wrap-script-literals. Also note that by default, tidy "
|
||||
"independently of wrap-script-literals. Also note that by default, Tidy "
|
||||
"\"munges\" or \"normalizes\" attribute values by replacing any newline "
|
||||
"or tab character with a single space character, and further by replacing "
|
||||
"any sequences of multiple whitespace characters with a single space. "
|
||||
"To force tidy to preserve the original, literal values of all attributes, "
|
||||
"To force Tidy to preserve the original, literal values of all attributes, "
|
||||
"and ensure that whitespace characters within attribute values are passed "
|
||||
"through unchanged, set the literal-attributes option to \"no\". "
|
||||
"through unchanged, set the literal-attributes option to \"yes\". "
|
||||
,TidyWrapAttValsLinks
|
||||
},
|
||||
{TidyWrapJste,
|
||||
|
|
|
@ -1 +1 @@
|
|||
static const char TY_(release_date)[] = "https://github.com/w3c/tidy-html5/tree/4408516";
|
||||
static const char TY_(release_date)[] = "https://github.com/w3c/tidy-html5/tree/d193420";
|
Loading…
Reference in a new issue