diff --git a/quickref.html b/quickref.html
index 4fdc5d3..fcb6a17 100644
--- a/quickref.html
+++ b/quickref.html
@@ -8,7 +8,7 @@
Quick Reference
HTML Tidy Configuration Options
- Version: https://github.com/w3c/tidy-html5/tree/1f21625
+ Version: https://github.com/w3c/tidy-html5/tree/c66f165
HTML, XHTML, XML
@@ -2036,7 +2036,7 @@
- This option specifies if Tidy should line wrap attribute values, for easier editing. This option can be set independently of wrap-script-literals. |
+ 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 value the literal-attributes option to "no". |
|
diff --git a/src/localize.c b/src/localize.c
index d62fa07..b986e98 100644
--- a/src/localize.c
+++ b/src/localize.c
@@ -746,9 +746,18 @@ static const TidyOptionDoc option_docs[] =
"pseudo elements, which look like: <% ... %>. "
},
{TidyWrapAttVals,
- "This option specifies if Tidy should line wrap attribute values, for "
- "easier editing. This option can be set independently of "
- "wrap-script-literals. "
+ "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 value the literal-attributes option to \"no\". "
,TidyWrapAttValsLinks
},
{TidyWrapJste,
diff --git a/src/version.h b/src/version.h
index 534f480..255a294 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-static const char TY_(release_date)[] = "https://github.com/w3c/tidy-html5/tree/880221e";
\ No newline at end of file
+static const char TY_(release_date)[] = "https://github.com/w3c/tidy-html5/tree/c66f165";
\ No newline at end of file