22 #pragma execution_character_set("utf-8")
78 "This option specifies what level of accessibility checking, if any, "
79 "that Tidy should perform. "
81 "Level <var>0 (Tidy Classic)</var> performs no additional accessibility checking. "
83 "Level <var>1 (Priority 1 Checks)</var> performs the Priority Level 1 checks."
85 "Level <var>2 (Priority 2 Checks)</var> performs the Priority Level 1 and 2 checks."
87 "Level <var>3 (Priority 3 Checks)</var> performs the Priority Level 1, 2, and 3 checks."
89 "For more information on Tidy's accessibility checking, including the specific "
90 "checks that are made for each Priority Level, please visit "
91 "<a href=\"https://www.html-tidy.org/accessibility/\"> Tidy's Accessibility Page</a>. "
102 "This option specifies the default <code>alt=</code> text Tidy uses for "
103 "<code><img></code> attributes when the <code>alt=</code> attribute "
106 "Use with care, as it is your responsibility to make your documents accessible "
107 "to people who cannot see the images. "
118 "This option controls the deletion or addition of the <code>name</code> "
119 "attribute in elements where it can serve as anchor. "
121 "If set to <var>yes</var> a <code>name</code> attribute, if not already "
122 "existing, is added along an existing <code>id</code> attribute if the DTD "
125 "If set to <var>no</var> any existing name attribute is removed if an "
126 "<code>id</code> attribute exists or has been added. "
137 "Can be used to modify behavior of the <code>clean</code> option when set "
138 "to <var>yes</var>. "
140 "If set to <var>yes</var> when using <code>clean</code>, "
141 "<code>&emdash;</code>, <code>&rdquo;</code>, and other named "
142 "character entities are downgraded to their closest ASCII equivalents. "
153 "This option specifies new block-level tags. This option takes a space or "
154 "comma separated list of tag names. "
156 "Unless you declare new tags, Tidy will refuse to generate a tidied file if "
157 "the input includes previously unknown tags. "
159 "Note you can't change the content model for elements such as "
160 "<code><table></code>, <code><ul></code>, "
161 "<code><ol></code> and <code><dl></code>. "
163 "This option is ignored in XML mode. "
174 "This option specifies if Tidy should print only the contents of the "
175 "body tag as an HTML fragment. "
177 "If set to <var>auto</var>, this is performed only if the body tag has "
180 "Useful for incorporating existing whole pages as a portion of another "
183 "This option has no effect if XML output is requested. "
194 "This option specifies if Tidy should output a line break before each "
195 "<code><br></code> element. "
206 "This option specifies the character encoding Tidy uses for input, and "
207 "when set, automatically chooses an appropriate character encoding to "
208 "be used for output. The output encoding Tidy chooses may be different "
209 "from the input encoding. "
211 "For <var>ascii</var>, <var>latin0</var>, <var>ibm858</var>, "
212 "<var>mac</var>, and <var>win1252</var> input encodings, the "
213 "<code>output-encoding</code> option will automatically be set to "
214 "<var>ascii</var>. You can set <code>output-encoding</code> manually "
217 "For other input encodings, the <code>output-encoding</code> option "
218 "will automatically be set to the the same value. "
220 "Regardless of the preset value, you can set "
221 "<code>output-encoding</code> manually to override this. "
223 "Tidy is not an encoding converter. Although the Latin and UTF "
224 "encodings can be mixed freely, it is not possible to convert Asian "
225 "encodings to Latin encodings with Tidy. "
236 "This option specifies if Tidy should coerce a start tag into an end tag "
237 "in cases where it looks like an end tag was probably intended; "
238 "for example, given "
240 "<code><span>foo <b>bar<b> baz</span></code> "
244 "<code><span>foo <b>bar</b> baz</span></code> "
255 "This option specifies the prefix that Tidy uses for styles rules. "
257 "By default, <var>c</var> will be used. "
268 "This option specifies if Tidy should decorate inferred "
269 "<code><ul></code> elements with some CSS markup to avoid indentation "
281 "This option specifies the DOCTYPE declaration generated by Tidy. "
283 "If set to <var>omit</var> the output won't contain a DOCTYPE "
284 "declaration. Note this this also implies <code>numeric-entities</code> is "
285 "set to <var>yes</var>."
287 "If set to <var>html5</var> the DOCTYPE is set to "
288 "<code><!DOCTYPE html></code>."
290 "If set to <var>auto</var> (the default) Tidy will use an educated guess "
291 "based upon the contents of the document. Note that selecting this option "
292 "will <em>not</em> change the current document's DOCTYPE on output. "
294 "If set to <var>strict</var>, Tidy will set the DOCTYPE to the HTML4 or "
297 "If set to <var>loose</var>, the DOCTYPE is set to the HTML4 or XHTML1 "
298 "loose (transitional) DTD."
300 "Alternatively, you can supply a string for the formal public identifier "
305 "<code>doctype: \"-//ACME//DTD HTML 3.14159//EN\"</code>"
307 "If you specify the FPI for an XHTML document, Tidy will set the "
308 "system identifier to an empty string. For an HTML document, Tidy adds a "
309 "system identifier only if one was already present in order to preserve "
310 "the processing mode of some browsers. Tidy leaves the DOCTYPE for "
311 "generic XML documents unchanged. "
313 "This option does not offer a validation of document conformance. "
324 "This option specifies if Tidy should discard empty elements. "
335 "This option specifies if Tidy should discard empty paragraphs. "
346 "This option specifies if Tidy should strip out proprietary attributes, "
347 "such as Microsoft data binding attributes. Additionally attributes "
348 "that aren't permitted in the output version of HTML will be dropped "
349 "if used with <code>strict-tags-attributes</code>. "
360 "This option specifies if Tidy should keep the first or last attribute, if "
361 "an attribute is repeated, e.g. has two <code>align</code> attributes. "
372 "This option specifies that Tidy should change the format for reporting "
373 "errors and warnings to a format that is more easily parsed by GNU Emacs "
374 "or some other program. It changes them from the default "
376 " line <line number> column <column number> - (Error|Warning): <message> "
378 "to a form which includes the input filename: "
380 " <filename>:<line number>:<column number>: (Error|Warning): <message> "
391 "This option specifies new empty inline tags. This option takes a space "
392 "or comma separated list of tag names. "
394 "Unless you declare new tags, Tidy will refuse to generate a tidied file if "
395 "the input includes previously unknown tags. "
397 "Remember to also declare empty tags as either inline or blocklevel. "
399 "This option is ignored in XML mode. "
410 "This option specifies if Tidy should insert a <code><p></code> "
411 "element to enclose any text it finds in any element that allows mixed "
412 "content for HTML transitional but not HTML strict. "
423 "This option specifies if Tidy should enclose any text it finds in the "
424 "body element within a <code><p></code> element."
426 "This is useful when you want to take existing HTML and use it with a "
438 "This option specifies the error file Tidy uses for errors and warnings. "
439 "Normally errors and warnings are output to <code>stderr</code>. "
450 "This option specifies if Tidy should convert "
451 "<code><![CDATA[]]></code> sections to normal text. "
462 "This option causes items that look like closing tags, like "
463 "<code></g</code> to be escaped to <code><\\/g</code>. Set "
464 "this option to <var>no</var> if you do not want this."
475 "This option specifies if Tidy should replace backslash characters "
476 "<code>\\</code> in URLs with forward slashes <code>/</code>. "
487 "This option specifies if Tidy should replace unexpected hyphens with "
488 "<code>=</code> characters when it comes across adjacent hyphens. "
490 "The default is <var>auto</var> will which will act as <var>no</var> "
491 "for HTML5 document types, and <var>yes</var> for all other document "
494 "HTML has abandoned SGML comment syntax, and allows adjacent hyphens "
495 "for all versions of HTML, although XML and XHTML do not. If you plan "
496 "to support older browsers that require SGML comment syntax, then "
497 "consider setting this value to <var>yes</var>."
508 "This option specifies if Tidy should check attribute values that carry "
509 "URIs for illegal characters and if such are found, escape them as HTML4 "
521 "This option specifies if Tidy should produce output even if errors are "
524 "Use this option with care; if Tidy reports an error, this "
525 "means Tidy was not able to (or is not sure how to) fix the error, so the "
526 "resulting output may not reflect your intention. "
537 "This option specifies if Tidy should enable specific behavior for "
538 "cleaning up HTML exported from Google Docs. "
549 "This option specifies if Tidy should not print out comments. "
560 "This option specifies if Tidy should generate pretty printed output, "
561 "writing it as HTML. "
572 "This option specifies the character encoding Tidy uses for input. "
573 "Tidy makes certain assumptions about some of the input encodings. "
575 "For <var>ascii</var>, Tidy will accept Latin-1 (ISO-8859-1) character "
576 "values and convert them to entities as necessary. "
578 "For <var>raw</var>, Tidy will make no assumptions about the character "
579 "values and will pass them unchanged to output. "
581 "For <var>mac</var> and <var>win1252</var>, vendor specific characters "
582 "values will be accepted and converted to entities as necessary. "
584 "Asian encodings such as <var>iso2022</var> will be handled "
585 "appropriately assuming the corresponding <code>output-encoding</code> "
586 "is also specified. "
588 "Tidy is not an encoding converter. Although the Latin and UTF "
589 "encodings can be mixed freely, it is not possible to convert Asian "
590 "encodings to Latin encodings with Tidy. "
601 "This option specifies if Tidy should begin each attribute on a new line. "
612 "This option specifies if Tidy should indent "
613 "<code><![CDATA[]]></code> sections. "
624 "This option specifies if Tidy should indent block-level tags. "
626 "If set to <var>auto</var> Tidy will decide whether or not to indent the "
627 "content of tags such as <code><title></code>, "
628 "<code><h1></code>-<code><h6></code>, <code><li></code>, "
629 "<code><td></code>, or <code><p></code> "
630 "based on the content including a block-level element. "
632 "Setting <code>indent</code> to <var>yes</var> can expose layout bugs in "
635 "Use the option <code>indent-spaces</code> to control the number of spaces "
636 "or tabs output per level of indent, and <code>indent-with-tabs</code> to "
637 "specify whether spaces or tabs are used. "
648 "This option specifies the number of spaces or tabs that Tidy uses to "
649 "indent content when <code>indent</code> is enabled. "
651 "Note that the default value for this option is dependent upon the value of "
652 "<code>indent-with-tabs</code> (see also). "
663 "This option specifies new non-empty inline tags. This option takes a "
664 "space or comma separated list of tag names. "
666 "Unless you declare new tags, Tidy will refuse to generate a tidied file if "
667 "the input includes previously unknown tags. "
669 "This option is ignored in XML mode. "
680 "This option specifies if Tidy should combine class names to generate "
681 "a single, new class name if multiple class assignments are detected on "
693 "This option specifies if Tidy should combine styles to generate a single, "
694 "new style if multiple style values are detected on an element. "
705 "This option specifies if Tidy should keep the original modification time "
706 "of files that Tidy modifies in place. "
708 "Setting the option to <var>yes</var> allows you to tidy files without "
709 "changing the file modification date, which may be useful with certain "
710 "tools that use the modification date for things such as automatic server "
713 "Note this feature is not supported on some platforms. "
724 "With the default <var>no</var> Tidy will replace all source tabs with spaces, "
725 "controlled by the option <code>tab-size</code>, and the current line offset. "
726 "Of course, except in the special blocks/elements enumerated below, this will later "
727 "be reduced to just one space. "
729 "If set <var>yes</var> this option specifies Tidy should keep certain tabs "
730 "found in the source, but only "
731 "in preformatted blocks like <code><pre></code>, and other CDATA elements like "
732 "<code><script></code>, <code><style></code>, and other pseudo elements like "
733 "<code><?php ... ?></code>. As always, all other tabs, or sequences of tabs, in "
734 "the source will continue to be replaced with a space. "
745 "This option specifies how Tidy deals with whitespace characters within "
748 "If the value is <var>no</var> Tidy normalizes attribute values by "
749 "replacing any newline or tab with a single space, and further by replacing "
750 "any contiguous whitespace with a single space. "
752 "To force Tidy to preserve the original, literal values of all attributes "
753 "and ensure that whitespace within attribute values is passed "
754 "through unchanged, set this option to <var>yes</var>. "
765 "This option specifies if Tidy should replace any occurrence of "
766 "<code><i></code> with <code><em></code> and any occurrence of "
767 "<code><b></code> with <code><strong></code>. Any attributes "
768 "are preserved unchanged. "
770 "This option can be set independently of the <code>clean</code> option. "
781 "This option specifies if Tidy should convert the value of an attribute "
782 "that takes a list of predefined values to lower case. "
784 "This is required for XHTML documents. "
795 "This option specifies if Tidy should replace smart quotes and em dashes with "
796 "ASCII, and output spaces rather than non-breaking "
797 "spaces, where they exist in the input. "
808 "This option specifies if Tidy should perform cleaning of some legacy "
809 "presentational tags (currently <code><i></code>, "
810 "<code><b></code>, <code><center></code> when enclosed "
811 "within appropriate inline tags, and <code><font></code>). If "
812 "set to <var>yes</var>, then the legacy tags will be replaced with CSS "
813 "<code><style></code> tags and structural markup as appropriate. "
824 "This option specifies if Tidy should add a <code>meta</code> element to "
825 "the document head to indicate that the document has been tidied. "
827 "Tidy won't add a meta element if one is already present. "
838 "This option can be used to modify the behavior of <code>clean</code> when "
839 "set to <var>yes</var>."
841 "This option specifies if Tidy should merge nested <code><div></code> "
842 "such as <code><div><div>...</div></div></code>. "
844 "If set to <var>auto</var> the attributes of the inner "
845 "<code><div></code> are moved to the outer one. Nested "
846 "<code><div></code> with <code>id</code> attributes are <em>not</em> "
849 "If set to <var>yes</var> the attributes of the inner "
850 "<code><div></code> are discarded with the exception of "
851 "<code>class</code> and <code>style</code>. "
862 "This option specifies if Tidy should merge nested <code><b></code> "
863 "and <code><i></code> elements; for example, for the case "
865 "<code><b class=\"rtop-2\">foo <b class=\"r2-2\">bar</b> baz</b></code>, "
867 "Tidy will output <code><b class=\"rtop-2\">foo bar baz</b></code>. "
878 "This option can be used to modify the behavior of <code>clean</code> when "
879 "set to <var>yes</var>."
881 "This option specifies if Tidy should merge nested <code><span></code> "
882 "such as <code><span><span>...</span></span></code>. "
884 "The algorithm is identical to the one used by <code>merge-divs</code>. "
895 "This option specifies if Tidy should allow numeric character references. "
906 "The default is appropriate to the current platform. "
908 "Generally <var>CRLF</var> on PC-DOS, Windows and OS/2; <var>CR</var> "
909 "on Classic Mac OS; and <var>LF</var> everywhere else (Linux, macOS, "
921 "This option specifies if Tidy should output entities other than the "
922 "built-in HTML entities (<code>&amp;</code>, <code>&lt;</code>, "
923 "<code>&gt;</code>, and <code>&quot;</code>) in the numeric rather "
924 "than the named entity form. "
926 "Only entities compatible with the DOCTYPE declaration generated are used. "
928 "Entities that can be represented in the output encoding are translated "
940 "This option specifies if Tidy should omit optional start tags and end tags "
941 "when generating output. "
943 "Setting this option causes all tags for the <code><html></code>, "
944 "<code><head></code>, and <code><body></code> elements to be "
945 "omitted from output, as well as such end tags as <code></p></code>, "
946 "<code></li></code>, <code></dt></code>, "
947 "<code></dd></code>, <code></option></code>, "
948 "<code></tr></code>, <code></td></code>, and "
949 "<code></th></code>. "
951 "This option is ignored for XML output. "
962 "This option specifies the character encoding Tidy uses for "
963 "output. Some of the output encodings affect whether or not "
964 "some characters are translated to entities, although in all "
965 "cases, some entities will be written according to other Tidy "
966 "configuration options. "
968 "For <var>ascii</var>, <var>mac</var>, and <var>win1252</var> "
969 "output encodings, entities will be used for all characters "
970 "with values over 127. "
972 "For <var>raw</var> output, Tidy will write values above 127 "
973 "without translating them to entities. "
975 "Output using <var>latin1</var> will cause Tidy to write "
976 "character values higher than 255 as entities. "
978 "The UTF family such as <var>utf8</var> will write output "
979 "in the respective UTF encoding. "
981 "Asian output encodings such as <var>iso2022</var> will write "
982 "output in the specified encoding, assuming a corresponding "
983 "<code>input-encoding</code> was specified. "
985 "Tidy is not an encoding converter. Although the Latin and UTF "
986 "encodings can be mixed freely, it is not possible to convert Asian "
987 "encodings to Latin encodings with Tidy. "
998 "This option specifies the output file Tidy uses for markup. Normally "
999 "markup is written to <code>stdout</code>. "
1010 "This option specifies if Tidy should write a Unicode Byte Order Mark "
1011 "character (BOM; also known as Zero Width No-Break Space; has value of "
1012 "U+FEFF) to the beginning of the output, and only applies to UTF-8 and "
1013 "UTF-16 output encodings. "
1015 "If set to <var>auto</var> this option causes Tidy to write a BOM to "
1016 "the output only if a BOM was present at the beginning of the input. "
1018 "A BOM is always written for XML/XHTML output using UTF-16 output "
1030 "This option specifies if Tidy should indent with tabs instead of spaces, "
1031 "assuming <code>indent</code> is <var>yes</var>. "
1033 "Set it to <var>yes</var> to indent using tabs instead of the default "
1036 "Use the option <code>indent-spaces</code> to control the number of tabs "
1037 "output per level of indent. Note that when <code>indent-with-tabs</code> "
1038 "is enabled the default value of <code>indent-spaces</code> is reset to "
1041 "Note <code>tab-size</code> controls converting input tabs to spaces. Set "
1042 "it to zero to retain input tabs. "
1053 "This option specifies if Tidy should preserve well-formed entities "
1054 "as found in the input. "
1065 "This option specifies new tags that are to be processed in exactly the "
1066 "same way as HTML's <code><pre></code> element. This option takes a "
1067 "space or comma separated list of tag names. "
1069 "Unless you declare new tags, Tidy will refuse to generate a tidied file if "
1070 "the input includes previously unknown tags. "
1072 "Note you cannot as yet add new CDATA elements. "
1074 "This option is ignored in XML mode. "
1085 "This option allows prioritizing the writing of attributes in tidied "
1086 "documents, allowing them to written before the other attributes of an "
1087 "element. For example, you might specify that <strong>id</strong> and "
1088 "<strong>name</strong> are written before every other attribute. "
1090 "This option takes a space or comma separated list of attribute names. "
1101 "This option specifies if Tidy should line wrap after some Unicode or "
1102 "Chinese punctuation characters. "
1113 "When enabled, this option limits Tidy's non-document output to report "
1114 "only document warnings and errors. "
1125 "This option specifies if Tidy should output unadorned <code>&</code> "
1126 "characters as <code>&amp;</code>, in legacy doctypes only. "
1137 "This option specifies if Tidy should output <code>"</code> characters "
1138 "as <code>&quot;</code> as is preferred by some editing environments. "
1140 "The apostrophe character <code>'</code> is written out as "
1141 "<code>&#39;</code> since many web browsers don't yet support "
1142 "<code>&apos;</code>. "
1153 "This option specifies if Tidy should output non-breaking space characters "
1154 "as entities, rather than as the Unicode character value 160 (decimal). "
1165 "This option specifies if Tidy should replace numeric values in color "
1166 "attributes with HTML/XHTML color names where defined, e.g. replace "
1167 "<code>#ffffff</code> with <code>white</code>. "
1178 "This option specifies the number Tidy uses to determine if further errors "
1179 "should be shown. If set to <var>0</var>, then no errors are shown. "
1190 "This option specifies if Tidy should show the filename in messages. eg: "
1192 " tidy -q -e --show-filename yes index.html<br/>"
1193 " index.html: line 43 column 3 - Warning: replacing invalid UTF-8 bytes (char. code U+00A9) "
1205 "This option specifies if Tidy should display info-level messages. "
1216 "This option specifies if Tidy should generate a pretty printed version "
1217 "of the markup. Note that Tidy won't generate a pretty printed version if "
1218 "it finds significant errors (see <code>force-output</code>). "
1229 "This option specifies if Tidy should suppress warnings. This can be "
1230 "useful when a few errors are hidden in a flurry of warnings. "
1241 "This option specifies that Tidy should skip nested tags when parsing "
1242 "script and style data. "
1253 "This option specifies that Tidy should sort attributes within an element "
1254 "using the specified sort algorithm. If set to <var>alpha</var>, the "
1255 "algorithm is an ascending alphabetic sort. "
1257 "When used while sorting with <code>priority-attributes</code>, any "
1258 "attribute sorting will take place after the priority attributes have "
1270 "Use this option to prevent Tidy from displaying certain types of "
1271 "report output, for example, for conditions that you wish to ignore. "
1273 "This option takes a list of one or more keys indicating the message "
1274 "type to mute. You can discover these message keys by using the "
1275 "<code>mute-id</code> configuration option and examining Tidy's "
1287 "This option indicates whether or not Tidy should display message ID's "
1288 "with each of its error reports. This could be useful if you wanted to "
1289 "use the <code>mute</code> configuration option in order to filter "
1290 "out certain report messages. "
1301 "This options ensures that tags and attributes are applicable for the "
1302 "version of HTML that Tidy outputs. When set to <var>yes</var> and the "
1303 "output document type is a strict doctype, then Tidy will report "
1304 "errors. If the output document type is a loose or transitional "
1305 "doctype, then Tidy will report warnings. "
1307 "Additionally if <code>drop-proprietary-attributes</code> is enabled, "
1308 "then not applicable attributes will be dropped, too. "
1310 "When set to <var>no</var>, these checks are not performed. "
1321 "This option specifies the number of columns that Tidy uses between "
1322 "successive tab stops. It is used to map tabs to spaces when reading the "
1334 "This option specifies if Tidy should output attribute names in upper "
1337 "When set to <var>no</var>, attribute names will be written in lower "
1338 "case. Specifying <var>yes</var> will output attribute names in upper "
1339 "case, and <var>preserve</var> can used to leave attribute names "
1342 "When using XML input, the original case is always preserved. "
1353 "This option specifies if Tidy should output tag names in upper case. "
1355 "The default is <var>no</var> which results in lower case tag names, "
1356 "except for XML input where the original case is preserved. "
1367 "This option enables the use of tags for autonomous custom elements, "
1368 "e.g. <code><flag-icon></code> with Tidy. Custom tags are "
1369 "disabled if this value is <var>no</var>. Other settings - "
1370 "<var>blocklevel</var>, <var>empty</var>, <var>inline</var>, and "
1371 "<var>pre</var> will treat <em>all</em> detected custom tags "
1374 "The use of <code>new-blocklevel-tags</code>, "
1375 "<code>new-empty-tags</code>, <code>new-inline-tags</code>, or "
1376 "<code>new-pre-tags</code> will override the treatment of custom tags "
1377 "by this configuration option. This may be useful if you have "
1378 "different types of custom tags."
1380 "When enabled these tags are determined during the processing of your "
1381 "document using opening tags; matching closing tags will be recognized "
1382 "accordingly, and unknown closing tags will be discarded. "
1393 "This option specifies if Tidy should add some extra empty lines for "
1396 "The default is <var>no</var>. "
1398 "If set to <var>auto</var> Tidy will eliminate nearly all newline "
1410 "This option specifies if Tidy should warn on proprietary attributes."
1421 "This option specifies if Tidy should go to great pains to strip out "
1422 "all the surplus stuff Microsoft Word 2000 inserts when you save Word "
1423 "documents as \"Web pages\". It doesn't handle embedded images or VML. "
1425 "You should consider saving using Word's <strong>Save As...</strong>, "
1426 "and choosing <strong>Web Page, Filtered</strong>. "
1437 "This option specifies if Tidy should line wrap text contained within ASP "
1438 "pseudo elements, which look like: <code><% ... %></code>. "
1449 "This option specifies if Tidy should line-wrap attribute values, meaning "
1450 "that if the value of an attribute causes a line to exceed the width "
1451 "specified by <code>wrap</code>, Tidy will add one or more line breaks to "
1452 "the value, causing it to be wrapped into multiple lines. "
1454 "Note that this option can be set independently of "
1455 "<code>wrap-script-literals</code>. "
1456 "By default Tidy replaces any newline or tab with a single space and "
1457 "replaces any sequences of whitespace with a single space. "
1459 "To force Tidy to preserve the original, literal values of all attributes, "
1460 "and ensure that whitespace characters within attribute values are passed "
1461 "through unchanged, set <code>literal-attributes</code> to "
1473 "This option specifies if Tidy should line wrap text contained within "
1474 "JSTE pseudo elements, which look like: <code><# ... #></code>. "
1485 "This option specifies the right margin Tidy uses for line wrapping. "
1487 "Tidy tries to wrap lines so that they do not exceed this length. "
1489 "Set <code>wrap</code> to <var>0</var> (zero) if you want to disable "
1501 "This option specifies if Tidy should add a new line after a PHP "
1502 "pseudo elements, which look like: <code><?php ... ?></code>. "
1513 "This option specifies if Tidy should line wrap string literals assigned "
1514 "to element event handler attributes, such as element.onmouseover()."
1525 "This option specifies if Tidy should line wrap text contained within "
1526 "<code><![ ... ]></code> section tags. "
1537 "This option specifies if Tidy should write back the tidied markup to the "
1538 "same file it read from. "
1540 "You are advised to keep copies of important files before tidying them, as "
1541 "on rare occasions the result may not be what you expect. "
1552 "This option specifies if Tidy should generate pretty printed output, "
1553 "writing it as extensible HTML. "
1555 "This option causes Tidy to set the DOCTYPE and default namespace as "
1556 "appropriate to XHTML, and will use the corrected value in output "
1557 "regardless of other sources. "
1559 "For XHTML, entities can be written as named or numeric entities according "
1560 "to the setting of <code>numeric-entities</code>. "
1562 "The original case of tags and attributes will be preserved, regardless of "
1574 "This option specifies if Tidy should add the XML declaration when "
1575 "outputting XML or XHTML. "
1577 "Note that if the input already includes an <code><?xml ... ?></code> "
1578 "declaration then this option will be ignored. "
1580 "If the encoding for the output is different from <var>ascii</var>, one "
1581 "of the <var>utf*</var> encodings, or <var>raw</var>, then the "
1582 "declaration is always added as required by the XML standard. "
1593 "This option specifies if Tidy should pretty print output, writing it as "
1596 "Any entities not defined in XML 1.0 will be written as numeric entities to "
1597 "allow them to be parsed by an XML parser. "
1599 "The original case of tags and attributes will be preserved, regardless of "
1611 "This option specifies if Tidy should change the parsing of processing "
1612 "instructions to require <code>?></code> as the terminator rather than "
1613 "<code>></code>. "
1615 "This option is automatically set if the input is in XML. "
1626 "This option specifies if Tidy should add "
1627 "<code>xml:space=\"preserve\"</code> to elements such as "
1628 "<code><pre></code>, <code><style></code> and "
1629 "<code><script></code> when generating XML. "
1631 "This is needed if the whitespace in such elements is to "
1632 "be parsed appropriately without having access to the DTD. "
1643 "This option specifies if Tidy should use the XML parser rather than the "
1644 "error correcting HTML parser. "
1655 "This option, when enabled, adds a <code><meta></code> element "
1656 "and sets the <code>charset</code> attribute to the encoding of the "
1657 "document. Set this option to <var>yes</var> to enable it. "
1668 "This option enables a message whenever Tidy changes the "
1669 "<code>content</code> attribute of a meta charset declaration to match "
1670 "the encoding of the document. Set this option to <var>yes</var> to "
1682 "This option specifies if Tidy should move all style tags to the "
1683 "head of the document. "
1742 TEXT_HTML_T_ALGORITHM, 0,
1744 " - First, search left from the cell's position to find row header cells.\n"
1745 " - Then search upwards to find column header cells.\n"
1746 " - The search in a given direction stops when the edge of the table is\n"
1747 " reached or when a data cell is found after a header cell.\n"
1748 " - Row headers are inserted into the list in the order they appear in\n"
1750 " - For left-to-right tables, headers are inserted from left to right.\n"
1751 " - Column headers are inserted after row headers, in \n"
1752 " the order they appear in the table, from top to bottom. \n"
1753 " - If a header cell has the headers attribute set, then the headers \n"
1754 " referenced by this attribute are inserted into the list and the \n"
1755 " search stops for the current direction.\n"
1756 " TD cells that set the axis attribute are also treated as header cells.\n"
1760 TEXT_VENDOR_CHARS, 0,
1761 "It is unlikely that vendor-specific, system-dependent encodings\n"
1762 "work widely enough on the World Wide Web; you should avoid using the \n"
1763 "%s character encoding, instead you are recommended to\n"
1764 "use named entities, e.g. ™.\n"
1770 "Character codes 128 to 159 (U+0080 to U+009F) are not allowed in HTML;\n"
1771 "even if they were, they would likely be unprintable control characters.\n"
1772 "Tidy assumed you wanted to refer to a character with the same byte value in the \n"
1773 "%s encoding and replaced that reference with the Unicode \n"
1777 TEXT_INVALID_UTF8, 0,
1778 "Character codes for UTF-8 must be in the range: U+0000 to U+10FFFF.\n"
1779 "The definition of UTF-8 in Annex D of ISO/IEC 10646-1:2000 also\n"
1780 "allows for the use of five- and six-byte sequences to encode\n"
1781 "characters that are outside the range of the Unicode character set;\n"
1782 "those five- and six-byte sequences are illegal for the use of\n"
1783 "UTF-8 as a transformation of Unicode characters. ISO/IEC 10646\n"
1784 "does not allow mapping of unpaired surrogates, nor U+FFFE and U+FFFF\n"
1785 "(but it does allow other noncharacters). For more information please refer to\n"
1786 "https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
1789 TEXT_INVALID_UTF16, 0,
1790 "Character codes for UTF-16 must be in the range: U+0000 to U+10FFFF.\n"
1791 "The definition of UTF-16 in Annex C of ISO/IEC 10646-1:2000 does not allow the\n"
1792 "mapping of unpaired surrogates. For more information please refer to\n"
1793 "https://home.unicode.org/ and https://www.cl.cam.ac.uk/~mgk25/unicode.html\n"
1797 TEXT_INVALID_URI, 0,
1798 "URIs must be properly escaped, they must not contain unescaped\n"
1799 "characters below U+0021 including the space character and not\n"
1800 "above U+007E. Tidy escapes the URI for you as recommended by\n"
1801 "HTML 4.01 section B.2.1 and XML 1.0 section 4.2.2. Some user agents\n"
1802 "use another algorithm to escape such URIs and some server-sided\n"
1803 "scripts depend on that. If you want to depend on that, you must\n"
1804 "escape the URI on your own. For more information please refer to\n"
1805 "https://www.w3.org/International/O-URL-and-ident.html\n"
1809 "You may need to move one or both of the <form> and </form>\n"
1810 "tags. HTML elements should be properly nested and form elements\n"
1811 "are no exception. For instance you should not place the <form>\n"
1812 "in one table cell and the </form> in another. If the <form> is\n"
1813 "placed before a table, the </form> cannot be placed inside the\n"
1814 "table! Note that one form can't be nested inside another!\n"
1818 "Only one <main> element is allowed in a document.\n"
1819 "Subsequent <main> elements have been discarded, which may\n"
1820 "render the document invalid.\n"
1824 "The table summary attribute should be used to describe\n"
1825 "the table structure. It is very helpful for people using\n"
1826 "non-visual browsers. The scope and headers attributes for\n"
1827 "table cells are useful for specifying which headers apply\n"
1828 "to each table cell, enabling non-visual browsers to provide\n"
1829 "a meaningful context for each cell.\n"
1832 TEXT_M_IMAGE_ALT, 0,
1833 "The alt attribute should be used to give a short description\n"
1834 "of an image; longer descriptions should be given with the\n"
1835 "longdesc attribute which takes a URL linked to the description.\n"
1836 "These measures are needed for people using non-graphical browsers.\n"
1839 TEXT_M_IMAGE_MAP, 0,
1840 "Use client-side image maps in preference to server-side image\n"
1841 "maps as the latter are inaccessible to people using non-\n"
1842 "graphical browsers. In addition, client-side maps are easier\n"
1843 "to set up and provide immediate feedback to users.\n"
1847 "For hypertext links defined using a client-side image map, you\n"
1848 "need to use the alt attribute to provide a textual description\n"
1849 "of the link for people using non-graphical browsers.\n"
1852 TEXT_USING_FRAMES, 0,
1853 "Pages designed using frames present problems for\n"
1854 "people who are either blind or using a browser that\n"
1855 "doesn't support frames. A frames-based page should always\n"
1856 "include an alternative layout inside a NOFRAMES element.\n"
1859 FOOTNOTE_TRIM_EMPTY_ELEMENT, 0,
1860 "One or more empty elements were present in the source document but\n"
1861 "dropped on output. If these elements are necessary or you don't want\n"
1862 "this behavior, then consider setting the option \"drop-empty-elements\"\n"
1867 TEXT_ACCESS_ADVICE1, 0,
1868 "For further advice on how to make your pages accessible\n"
1869 "see https://www.w3.org/WAI/GL."
1873 TEXT_ACCESS_ADVICE2, 0,
1874 "For further advice on how to make your pages accessible\n"
1875 "see https://www.w3.org/WAI/GL and https://www.html-tidy.org/accessibility/."
1878 TEXT_USING_LAYER, 0,
1879 "The Cascading Style Sheets (CSS) Positioning mechanism\n"
1880 "is recommended in preference to the proprietary <LAYER>\n"
1881 "element due to limited vendor support for LAYER.\n"
1884 TEXT_USING_SPACER, 0,
1885 "You are recommended to use CSS for controlling white\n"
1886 "space (e.g. for indentation, margins and line spacing).\n"
1887 "The proprietary <SPACER> element has limited vendor support.\n"
1891 "You are recommended to use CSS to specify the font and\n"
1892 "properties such as its size and color. This will reduce\n"
1893 "the size of HTML files and make them easier to maintain\n"
1894 "compared with using <FONT> elements.\n"
1898 "You are recommended to use CSS to control line wrapping.\n"
1899 "Use \"white-space: nowrap\" to inhibit wrapping in place\n"
1900 "of inserting <NOBR>...</NOBR> into the markup.\n"
1904 "You are recommended to use CSS to specify page and link colors"
1915 STRING_ERROR_COUNT, 0,
"Tidy found %u %s and %u %s!\n"
1920 "This document has errors that must be fixed before\n"
1921 "using HTML Tidy to generate a tidied up version.\n"
1925 {
STRING_NOT_ALL_SHOWN, 0,
"Tidy found %u %s and %u %s! Not all warnings/errors were shown.\n" },
1929 "About HTML Tidy: https://github.com/htacg/tidy-html5\n"
1930 "Bug reports and comments: https://github.com/htacg/tidy-html5/issues\n"
1931 "Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/\n"
1932 "Latest HTML specification: https://html.spec.whatwg.org/multipage/\n"
1933 "Validate your HTML documents: https://validator.w3.org/nu/\n"
1934 "Lobby your company to join the W3C: https://www.w3.org/Consortium\n"
1940 "Do you speak a language other than English, or a different variant of \n"
1941 "English? Consider helping us to localize HTML Tidy. For details please see \n"
1942 "https://github.com/htacg/tidy-html5/blob/master/README/LOCALIZE.md"
1954 {
APOS_UNDEFINED, 0,
"named entity ' only defined in XML/XHTML" },
1962 {
BAD_SUMMARY_HTML5, 0,
"The summary attribute on the %s element is obsolete in HTML5" },
1963 {
BAD_SURROGATE_LEAD, 0,
"Trailing (Low) surrogate pair U+%04X, with no leading (High) entity, replaced with U+FFFD." },
1964 {
BAD_SURROGATE_PAIR, 0,
"Have out-of-range surrogate pair U+%04X:U+%04X, replaced with U+FFFD value." },
1965 {
BAD_SURROGATE_TAIL, 0,
"Leading (High) surrogate pair U+%04X, with no trailing (Low) entity, replaced with U+FFFD." },
1976 {
ENCODING_MISMATCH, 0,
"specified input encoding (%s) does not match actual input encoding (%s)" },
1990 {
INVALID_NCR, 0,
"%s invalid numeric character reference %s" },
1992 {
INVALID_UTF8, 0,
"%s invalid UTF-8 bytes (char. code %s)" },
1993 {
INVALID_UTF16, 0,
"%s invalid UTF-16 surrogate pair (char. code %s)" },
1999 {
MALFORMED_COMMENT_WARN, 0,
"detected adjacent hyphens within the comment; consider fix-bad-comments" },
2023 {
OPTION_REMOVED, 0,
"option \"%s\" no longer exists, and no replacement could be found." },
2058 {
WHITE_IN_URI, 0,
"%s discarding whitespace in URI reference" },
2188 #if SUPPORT_CONSOLE_APP
2203 "do additional accessibility checks (<level> = 0, 1, 2, 3). 0 is "
2204 "assumed if <level> is missing."
2206 {
TC_OPT_ASCII, 0,
"use ISO-8859-1 for input, US-ASCII for output" },
2208 {
TC_OPT_ASXML, 0,
"convert HTML to well formed XHTML" },
2209 {
TC_OPT_BARE, 0,
"strip out smart quotes and em dashes, etc." },
2210 {
TC_OPT_BIG5, 0,
"use Big5 for both input and output" },
2211 {
TC_OPT_CLEAN, 0,
"replace FONT, NOBR and CENTER tags with CSS" },
2212 {
TC_OPT_CONFIG, 0,
"set configuration options from the specified <file>" },
2214 {
TC_OPT_FILE, 0,
"write errors and warnings to the specified <file>" },
2215 {
TC_OPT_GDOC, 0,
"produce clean version of html exported by Google Docs" },
2216 {
TC_OPT_HELP, 0,
"list the command line options" },
2218 {
TC_OPT_HELPENV, 0,
"show information about the environment and runtime configuration" },
2220 {
TC_OPT_IBM858, 0,
"use IBM-858 (CP850+Euro) for input, US-ASCII for output" },
2226 "set Tidy's output language to <lang>. Specify '-language help' for more help. "
2227 "Use before output-causing arguments to ensure the language takes effect, e.g.,"
2228 "`tidy -lang es -lang help`."
2231 {
TC_OPT_LATIN0, 0,
"use ISO-8859-15 for input, US-ASCII for output" },
2232 {
TC_OPT_LATIN1, 0,
"use ISO-8859-1 for both input and output" },
2233 {
TC_OPT_MAC, 0,
"use MacRoman for input, US-ASCII for output" },
2235 {
TC_OPT_NUMERIC, 0,
"output numeric rather than named entities" },
2236 {
TC_OPT_OMIT, 0,
"omit optional start tags and end tags" },
2237 {
TC_OPT_OUTPUT, 0,
"write output to the specified <file>" },
2239 {
TC_OPT_RAW, 0,
"output values above 127 without conversion to entities" },
2241 {
TC_OPT_SHOWCFG, 0,
"list the current configuration settings" },
2242 {
TC_OPT_EXP_CFG, 0,
"list the current configuration settings, suitable for a config file" },
2243 {
TC_OPT_EXP_DEF, 0,
"list the default configuration settings, suitable for a config file" },
2245 {
TC_OPT_UTF16, 0,
"use UTF-16 for both input and output" },
2248 {
TC_OPT_UTF8, 0,
"use UTF-8 for both input and output" },
2254 {
TC_OPT_WIN1252, 0,
"use Windows-1252 for input, US-ASCII for output" },
2256 "wrap text at the specified <column>. 0 is assumed if <column> is "
2257 "missing. When this option is omitted, the default of the "
2258 "configuration option 'wrap' applies."
2260 {
TC_OPT_XML, 0,
"specify the input is well formed XML" },
2261 {
TC_OPT_XMLCFG, 0,
"list all configuration options in XML format" },
2262 {
TC_OPT_XMLHELP, 0,
"list the command line options in XML format" },
2268 {
TC_OPT_XMLERRS, 0,
"output error constants and strings in XML format" },
2270 {
TC_OPT_XMLOPTS, 0,
"output option descriptions in XML format" },
2318 "%s [options...] [file...] [options...] [file...]\n"
2319 "Utility to clean up and pretty print HTML/XHTML/XML.\n"
2321 "This is modern HTML Tidy version %s.\n"
2327 "Command Line Arguments for HTML Tidy for %s:"
2331 "Command Line Arguments for HTML Tidy:"
2338 "Tidy Configuration Options\n"
2339 "==========================\n"
2340 " Use Tidy's configuration options as command line arguments in the form\n"
2341 " of \"--some-option <value>\", for example, \"--indent-with-tabs yes\".\n"
2343 " You can also specify a file containing configuration options with the \n"
2344 " -config <file> directive, or in one or more files specific to your \n"
2345 " environment (see next section). \n"
2347 " For a list of all configuration options, use \"-help-config\" or refer\n"
2348 " to the man page (if your OS has one).\n"
2350 "Configuration Files\n"
2351 "===================\n"
2352 " If your environment has an $HTML_TIDY variable set to point to a Tidy \n"
2353 " configuration file, then Tidy will attempt to use it. \n"
2355 " Use \"-help-env\" for more information about how you can use the environment. \n"
2356 " to specify Tidy options. \n"
2360 " Input/Output default to stdin/stdout respectively.\n"
2362 " Single letter options apart from -f may be combined\n"
2363 " as in: tidy -f errs.txt -imu foo.html\n"
2367 " For more information about HTML Tidy, see\n"
2368 " https://www.html-tidy.org/\n"
2370 " For more information on HTML, see the following:\n"
2372 " HTML Living Standard (the latest HTML specification)\n"
2373 " https://html.spec.whatwg.org/multipage/\n"
2375 " File bug reports at https://github.com/htacg/tidy-html5/issues/\n"
2376 " or send questions and comments to public-htacg@w3.org.\n"
2378 " Validate your HTML documents using the W3C Nu Markup Validator:\n"
2379 " https://validator.w3.org/nu/\n"
2387 " Additionally, Tidy will automatically attempt to use configuration specified \n"
2388 " in these files, if present: \n"
2398 "HTML Tidy Configuration Settings\n"
2400 "Within a file, use the form:\n"
2405 "When specified on the command line, use the form:\n"
2407 "--wrap 72 --indent no\n"
2419 "Tidy can configure its option values from multiple sources, in the \n"
2420 "order below. Subsequent use of the same option overrides previous \n"
2421 "option settings. \n"
2423 " - Tidy's built-in default values. \n"
2425 " - The file specified in the $HTML_TIDY environment variable: \n"
2427 " - Options in a file specified on the command line. \n"
2428 " - Options set directly on the command line. \n"
2433 " - The system runtime configuration file: \n"
2435 " - The user runtime configuration file: \n"
2442 "(not currently set)"
2448 "Note that because $HTML_TIDY is set, the user runtime configuration file \n"
2449 "%s will not be used. \n"
2455 "The -language (or -lang) option indicates which language Tidy \n"
2456 "should use to communicate its output. Please note that this is not \n"
2457 "a document translation service, and only affects the messages that \n"
2458 "Tidy communicates to you. \n"
2460 "When used from the command line the -language argument must \n"
2461 "be used before any arguments that result in output, otherwise Tidy \n"
2462 "will produce output before it knows which language to use. \n"
2464 "In addition to standard POSIX language codes, Tidy is capable of \n"
2465 "understanding legacy Windows language codes. Please note that this \n"
2466 "list indicates codes Tidy understands, and does not indicate that \n"
2467 "the language is currently installed. \n"
2469 "The rightmost column indicates how Tidy will understand the \n"
2470 "legacy Windows name.\n"
2477 "The following languages are currently installed in Tidy. Please \n"
2478 "note that there's no guarantee that they are complete; only that \n"
2479 "one developer or another started to add the language indicated. \n"
2481 "Incomplete localizations will default to \"en\" when necessary. \n"
2482 "Please report instances of incorrect strings to the Tidy team. \n"
2490 "If Tidy is able to determine your locale then Tidy will use the \n"
2491 "locale's language automatically. For example Unix-like systems use a \n"
2492 "$LANG and/or $LC_ALL environment variable. Consult your operating \n"
2493 "system documentation for more information. \n"
2495 "Tidy is currently using locale %s. \n"
@ MISSING_ENDTAG_OPTIONAL
Definition: tidyenum.h:1460
@ TC_STRING_FATAL_ERROR
Definition: tidyenum.h:1462
@ FILE_NOT_FILE
Definition: tidyenum.h:1460
@ TC_OPT_UTF8
Definition: tidyenum.h:1462
@ METADATA_MISSING
[13.1.1.5]
Definition: tidyenum.h:1461
@ STRING_ERROR_COUNT_ERROR
error and errors
Definition: tidyenum.h:1458
@ MALFORMED_COMMENT_EOS
Definition: tidyenum.h:1460
@ MISSING_ATTRIBUTE
Definition: tidyenum.h:1460
@ OPTION_REMOVED_UNAPPLIED
Definition: tidyenum.h:1460
@ LINK_TEXT_TOO_LONG
[13.1.1.3]
Definition: tidyenum.h:1461
@ TC_TXT_HELP_2A
Definition: tidyenum.h:1462
@ FILE_CANT_OPEN
Definition: tidyenum.h:1460
@ TABLE_MISSING_SUMMARY
[5.5.1.1]
Definition: tidyenum.h:1461
@ NEW_WINDOWS_REQUIRE_WARNING_BLANK
[10.1.1.2]
Definition: tidyenum.h:1461
@ TC_STRING_LANG_MUST_SPECIFY
Definition: tidyenum.h:1462
@ OPTION_REMOVED_APPLIED
Definition: tidyenum.h:1460
@ TC_OPT_HELPOPT
Definition: tidyenum.h:1462
@ INFORMATION_NOT_CONVEYED_OBJECT
[2.1.1.3]
Definition: tidyenum.h:1461
@ UNEXPECTED_QUOTEMARK
Definition: tidyenum.h:1460
@ IMG_MISSING_DLINK
[1.1.2.2]
Definition: tidyenum.h:1461
@ LINK_TEXT_NOT_MEANINGFUL_CLICK_HERE
[13.1.1.4]
Definition: tidyenum.h:1461
@ UNEXPECTED_END_OF_FILE
Definition: tidyenum.h:1460
@ BAD_SURROGATE_TAIL
Definition: tidyenum.h:1460
@ INFORMATION_NOT_CONVEYED_APPLET
[2.1.1.2]
Definition: tidyenum.h:1461
@ UNEXPECTED_EQUALSIGN
Definition: tidyenum.h:1460
@ TABLE_MISSING_CAPTION
[5.5.2.1]
Definition: tidyenum.h:1461
@ ESCAPED_ILLEGAL_URI
Definition: tidyenum.h:1460
@ TC_TXT_HELP_LANG_1
Definition: tidyenum.h:1462
@ BAD_ATTRIBUTE_VALUE
Definition: tidyenum.h:1460
@ COLOR_CONTRAST_TEXT
[2.2.1.1]
Definition: tidyenum.h:1461
@ CUSTOM_TAG_DETECTED
Definition: tidyenum.h:1460
@ STRING_ARGUMENT_BAD
Definition: tidyenum.h:1460
@ ADDED_MISSING_CHARSET
Definition: tidyenum.h:1460
@ REPLACE_DEPRECATED_HTML_STRIKE
[11.2.1.9]
Definition: tidyenum.h:1461
@ TABLE_SUMMARY_INVALID_NULL
[5.5.1.2]
Definition: tidyenum.h:1461
@ TIDYCUSTOMBLOCKLEVEL_STRING
block level
Definition: tidyenum.h:1458
@ TC_STRING_VERS_B
Definition: tidyenum.h:1462
@ TC_OPT_OMIT
Definition: tidyenum.h:1462
@ MISSING_ATTR_VALUE
Definition: tidyenum.h:1460
@ DOCTYPE_AFTER_TAGS
Definition: tidyenum.h:1460
@ SCRIPT_NOT_KEYBOARD_ACCESSIBLE_ON_MOUSE_MOVE
[9.3.1.6]
Definition: tidyenum.h:1461
@ STYLE_SHEET_CONTROL_PRESENTATION
[3.3.1.1]
Definition: tidyenum.h:1461
@ INSERTING_TAG
Definition: tidyenum.h:1460
@ CONTENT_AFTER_BODY
Definition: tidyenum.h:1460
@ TC_LABEL_LANG
Definition: tidyenum.h:1462
@ COERCE_TO_ENDTAG
Definition: tidyenum.h:1460
@ MISSING_IMAGEMAP
Definition: tidyenum.h:1460
@ METADATA_MISSING_REDIRECT_AUTOREFRESH
[13.2.1.2]
Definition: tidyenum.h:1461
@ IMG_MAP_CLIENT_MISSING_TEXT_LINKS
[1.5.1.1]
Definition: tidyenum.h:1461
@ WHITE_IN_URI
Definition: tidyenum.h:1460
@ COLOR_CONTRAST_ACTIVE_LINK
[2.2.1.3]
Definition: tidyenum.h:1461
@ REPLACE_DEPRECATED_HTML_FONT
[11.2.1.5]
Definition: tidyenum.h:1461
@ TC_OPT_ASCII
Definition: tidyenum.h:1462
@ TC_TXT_HELP_CONFIG_NAME
Definition: tidyenum.h:1462
@ SCRIPT_NOT_KEYBOARD_ACCESSIBLE_ON_MOUSE_DOWN
[9.3.1.1]
Definition: tidyenum.h:1461
@ TC_TXT_HELP_ENV_1C
Definition: tidyenum.h:1462
@ IMG_MISSING_LONGDESC_DLINK
[1.1.1.11]
Definition: tidyenum.h:1461
@ UNEXPECTED_ENDTAG
Definition: tidyenum.h:1460
@ AUDIO_MISSING_TEXT_WAV
[1.1.6.1]
Definition: tidyenum.h:1461
@ PROPRIETARY_ATTRIBUTE
Definition: tidyenum.h:1460
@ TC_STRING_LANG_NOT_FOUND
Definition: tidyenum.h:1462
@ TC_TXT_HELP_ENV_1
Definition: tidyenum.h:1462
@ REPLACE_DEPRECATED_HTML_BASEFONT
[11.2.1.2]
Definition: tidyenum.h:1461
@ BAD_ATTRIBUTE_VALUE_REPLACED
Definition: tidyenum.h:1460
@ TC_OPT_LANGUAGE
Definition: tidyenum.h:1462
@ FRAME_MISSING_NOFRAMES
[6.5.1.1]
Definition: tidyenum.h:1461
@ PROGRAMMATIC_OBJECTS_REQUIRE_TESTING_APPLET
[6.3.1.4]
Definition: tidyenum.h:1461
@ MISSING_QUOTEMARK
Definition: tidyenum.h:1460
@ TC_STRING_UNKNOWN_OPTION_B
Definition: tidyenum.h:1462
@ TC_OPT_UTF16
Definition: tidyenum.h:1462
@ TC_TXT_HELP_CONFIG
Definition: tidyenum.h:1462
@ STRING_MUTING_TYPE
Definition: tidyenum.h:1460
@ TC_OPT_EXP_CFG
Definition: tidyenum.h:1462
@ LINK_TEXT_NOT_MEANINGFUL
[13.1.1.1]
Definition: tidyenum.h:1461
@ TC_STRING_MISC
Definition: tidyenum.h:1462
@ TC_OPT_QUIET
Definition: tidyenum.h:1462
@ MISMATCHED_ATTRIBUTE_ERROR
Definition: tidyenum.h:1460
@ BAD_SUMMARY_HTML5
Definition: tidyenum.h:1460
@ STRING_REPLACING
replacing
Definition: tidyenum.h:1458
@ OBSOLETE_ELEMENT
Definition: tidyenum.h:1460
@ REPLACING_UNEX_ELEMENT
Definition: tidyenum.h:1460
@ TC_OPT_IBM858
Definition: tidyenum.h:1462
@ POTENTIAL_HEADER_UNDERLINE
[3.5.2.3]
Definition: tidyenum.h:1461
@ DATA_TABLE_REQUIRE_MARKUP_COLUMN_HEADERS
[5.2.1.1]
Definition: tidyenum.h:1461
@ TOO_MANY_ELEMENTS
Definition: tidyenum.h:1460
@ ENCODING_MISMATCH
Definition: tidyenum.h:1460
@ IMG_ALT_SUSPICIOUS_FILE_SIZE
[1.1.1.3]
Definition: tidyenum.h:1461
@ INVALID_UTF16
Definition: tidyenum.h:1460
@ REMOVE_AUTO_REFRESH
[7.4.1.1]
Definition: tidyenum.h:1461
@ MISSING_ENDTAG_BEFORE
Definition: tidyenum.h:1460
@ TC_OPT_XMLCFG
Definition: tidyenum.h:1462
@ AREA_MISSING_ALT
[1.1.9.1]
Definition: tidyenum.h:1461
@ FOUND_STYLE_IN_BODY
Definition: tidyenum.h:1460
@ TC_OPT_GDOC
Definition: tidyenum.h:1462
@ VENDOR_SPECIFIC_CHARS
Definition: tidyenum.h:1460
@ TABLE_MAY_REQUIRE_HEADER_ABBR_SPACES
[5.6.1.3]
Definition: tidyenum.h:1461
@ LINK_TEXT_MISSING
[13.1.1.2]
Definition: tidyenum.h:1461
@ TC_OPT_MAC
Definition: tidyenum.h:1462
@ TC_OPT_LATIN1
Definition: tidyenum.h:1462
@ IMG_ALT_SUSPICIOUS_TOO_LONG
[1.1.1.10]
Definition: tidyenum.h:1461
@ REMOVE_FLICKER_APPLET
[7.1.1.4]
Definition: tidyenum.h:1461
@ TEXT_EQUIVALENTS_REQUIRE_UPDATING_APPLET
[6.2.2.1]
Definition: tidyenum.h:1461
@ REMOVE_FLICKER_SCRIPT
[7.1.1.1]
Definition: tidyenum.h:1461
@ BACKSLASH_IN_URI
Definition: tidyenum.h:1460
@ TC_STRING_XML
Definition: tidyenum.h:1462
@ SKIPOVER_ASCII_ART
[13.10.1.1]
Definition: tidyenum.h:1461
@ APOS_UNDEFINED
Definition: tidyenum.h:1460
@ TC_OPT_EXP_DEF
Definition: tidyenum.h:1462
@ FRAME_TITLE_INVALID_SPACES
[12.1.1.3]
Definition: tidyenum.h:1461
@ ASSOCIATE_LABELS_EXPLICITLY
[12.4.1.1]
Definition: tidyenum.h:1461
@ STRING_HELLO_ACCESS
Accessibility hello message.
Definition: tidyenum.h:1458
@ LIST_USAGE_INVALID_OL
[3.6.1.2]
Definition: tidyenum.h:1461
@ MALFORMED_COMMENT_DROPPING
Definition: tidyenum.h:1460
@ TC_OPT_ISO2022
Definition: tidyenum.h:1462
@ UNKNOWN_ELEMENT
Definition: tidyenum.h:1460
@ ASCII_REQUIRES_DESCRIPTION
[1.1.12.1]
Definition: tidyenum.h:1461
@ ATTRIBUTE_IS_NOT_ALLOWED
Definition: tidyenum.h:1460
@ TC_OPT_XMLHELP
Definition: tidyenum.h:1462
@ TC_OPT_HELPCFG
Definition: tidyenum.h:1462
@ NOFRAMES_CONTENT
Definition: tidyenum.h:1460
@ STRING_SPECIFIED
specified
Definition: tidyenum.h:1458
@ TC_OPT_UTF16BE
Definition: tidyenum.h:1462
@ TC_STRING_VERS_A
Definition: tidyenum.h:1462
@ FIXED_BACKSLASH
Definition: tidyenum.h:1460
@ NON_MATCHING_ENDTAG
Definition: tidyenum.h:1460
@ STRING_UNKNOWN_OPTION
Definition: tidyenum.h:1460
@ TOO_MANY_ELEMENTS_IN
Definition: tidyenum.h:1460
@ NESTED_QUOTATION
Definition: tidyenum.h:1460
@ AUDIO_MISSING_TEXT_RA
[1.1.6.5]
Definition: tidyenum.h:1461
@ SUSPECTED_MISSING_QUOTE
Definition: tidyenum.h:1460
@ REPLACE_DEPRECATED_HTML_ISINDEX
[11.2.1.6]
Definition: tidyenum.h:1461
@ TC_OPT_OUTPUT
Definition: tidyenum.h:1462
@ TC_OPT_ACCESS
Definition: tidyenum.h:1462
@ TC_TXT_HELP_CONFIG_TYPE
Definition: tidyenum.h:1462
@ TC_OPT_NUMERIC
Definition: tidyenum.h:1462
@ OPTION_REMOVED
Definition: tidyenum.h:1460
@ REMOVE_FLICKER_ANIMATED_GIF
[7.1.1.5]
Definition: tidyenum.h:1461
@ UNESCAPED_AMPERSAND
Definition: tidyenum.h:1460
@ AUDIO_MISSING_TEXT_AU
[1.1.6.2]
Definition: tidyenum.h:1461
@ STRING_CONTENT_LOOKS
Definition: tidyenum.h:1460
@ TC_OPT_VERSION
Definition: tidyenum.h:1462
@ TC_OPT_BARE
Definition: tidyenum.h:1462
@ TC_LABEL_COL
Definition: tidyenum.h:1462
@ ENSURE_PROGRAMMATIC_OBJECTS_ACCESSIBLE_APPLET
[8.1.1.3]
Definition: tidyenum.h:1461
@ STRING_NO_SYSID
Definition: tidyenum.h:1460
@ REMOVE_BLINK_MARQUEE
[7.2.1.1]
Definition: tidyenum.h:1461
@ DATA_TABLE_REQUIRE_MARKUP_ROW_HEADERS
[5.2.1.2]
Definition: tidyenum.h:1461
@ DUPLICATE_FRAMESET
Definition: tidyenum.h:1460
@ REPLACING_ELEMENT
Definition: tidyenum.h:1460
@ SCRIPT_NOT_KEYBOARD_ACCESSIBLE_ON_MOUSE_OVER
[9.3.1.4]
Definition: tidyenum.h:1461
@ INVALID_UTF8
Definition: tidyenum.h:1460
@ LAYOUT_TABLES_LINEARIZE_PROPERLY
[5.3.1.1]
Definition: tidyenum.h:1461
@ FILE_CANT_OPEN_CFG
Definition: tidyenum.h:1460
@ UNEXPECTED_GT
Definition: tidyenum.h:1460
@ XML_DECLARATION_DETECTED
Definition: tidyenum.h:1460
@ ANCHOR_NOT_UNIQUE
Definition: tidyenum.h:1460
@ FRAME_TITLE_INVALID_NULL
[12.1.1.2]
Definition: tidyenum.h:1461
@ TABLE_SUMMARY_INVALID_SPACES
[5.5.1.3]
Definition: tidyenum.h:1461
@ NEWLINE_IN_URI
Definition: tidyenum.h:1460
@ MISSING_TITLE_ELEMENT
Definition: tidyenum.h:1460
@ ATTRIBUTE_VALUE_REPLACED
Definition: tidyenum.h:1460
@ REPLACE_DEPRECATED_HTML_S
[11.2.1.8]
Definition: tidyenum.h:1461
@ STRING_DOCTYPE_GIVEN
Definition: tidyenum.h:1460
@ TC_OPT_XMLOPTS
Definition: tidyenum.h:1462
@ STRING_MISSING_MALFORMED
Definition: tidyenum.h:1460
@ PROPRIETARY_ELEMENT
Definition: tidyenum.h:1460
@ AUDIO_MISSING_TEXT_AIFF
[1.1.6.3]
Definition: tidyenum.h:1461
@ FRAME_MISSING_LONGDESC
[1.1.8.1]
Definition: tidyenum.h:1461
@ TC_OPT_SHIFTJIS
Definition: tidyenum.h:1462
@ TC_STRING_PROCESS_DIRECTIVES
Definition: tidyenum.h:1462
@ TC_OPT_SHOWCFG
Definition: tidyenum.h:1462
@ UNEXPECTED_ENDTAG_ERR
Definition: tidyenum.h:1460
@ TRIM_EMPTY_ELEMENT
Definition: tidyenum.h:1460
@ UNEXPECTED_END_OF_FILE_ATTR
Definition: tidyenum.h:1460
@ MISSING_STARTTAG
Definition: tidyenum.h:1460
@ TC_STRING_CONF_TYPE
Definition: tidyenum.h:1462
@ NESTED_EMPHASIS
Definition: tidyenum.h:1460
@ BLANK_TITLE_ELEMENT
Definition: tidyenum.h:1460
@ DATA_TABLE_MISSING_HEADERS_ROW
[5.1.2.3]
Definition: tidyenum.h:1461
@ TC_OPT_WRAP
Definition: tidyenum.h:1462
@ UNKNOWN_ENTITY
Definition: tidyenum.h:1460
@ FN_LINE_COLUMN_STRING
s: line d column d
Definition: tidyenum.h:1458
@ STRING_ERROR_COUNT_WARNING
warning and warnings
Definition: tidyenum.h:1458
@ TABLE_MAY_REQUIRE_HEADER_ABBR_NULL
[5.6.1.2]
Definition: tidyenum.h:1461
@ MOVED_STYLE_TO_HEAD
Definition: tidyenum.h:1460
@ TC_TXT_HELP_ENV_1A
Definition: tidyenum.h:1462
@ LIST_USAGE_INVALID_LI
[3.6.1.4]
Definition: tidyenum.h:1461
@ NOFRAMES_INVALID_LINK
[6.5.1.4]
Definition: tidyenum.h:1461
@ HEADER_USED_FORMAT_TEXT
[3.5.3.1]
Definition: tidyenum.h:1461
@ ILLEGAL_URI_REFERENCE
Definition: tidyenum.h:1460
@ HEADERS_IMPROPERLY_NESTED
[3.5.1.1]
Definition: tidyenum.h:1461
@ APPLET_MISSING_ALT
[1.1.4.1]
Definition: tidyenum.h:1461
@ TABLE_SUMMARY_INVALID_PLACEHOLDER
[5.5.1.6]
Definition: tidyenum.h:1461
@ PROGRAMMATIC_OBJECTS_REQUIRE_TESTING_OBJECT
[6.3.1.2]
Definition: tidyenum.h:1461
@ TC_OPT_XML
Definition: tidyenum.h:1462
@ TC_STRING_UNKNOWN_OPTION
Definition: tidyenum.h:1462
@ BAD_CDATA_CONTENT
Definition: tidyenum.h:1460
@ ASSOCIATE_LABELS_EXPLICITLY_FOR
[12.4.1.2]
Definition: tidyenum.h:1461
@ REMOVE_FLICKER_EMBED
[7.1.1.3]
Definition: tidyenum.h:1461
@ USING_BR_INPLACE_OF
Definition: tidyenum.h:1460
@ OBJECT_MISSING_ALT
[1.1.5.1]
Definition: tidyenum.h:1461
@ LIST_USAGE_INVALID_UL
[3.6.1.1]
Definition: tidyenum.h:1461
@ TIDYCUSTOMINLINE_STRING
inline
Definition: tidyenum.h:1458
@ TC_OPT_HELP
Definition: tidyenum.h:1462
@ ATTR_VALUE_NOT_LCASE
Definition: tidyenum.h:1460
@ DATA_TABLE_MISSING_HEADERS_COLUMN
[5.1.2.2]
Definition: tidyenum.h:1461
@ AUDIO_MISSING_TEXT_RM
[1.1.6.6]
Definition: tidyenum.h:1461
@ ENSURE_PROGRAMMATIC_OBJECTS_ACCESSIBLE_EMBED
[8.1.1.4]
Definition: tidyenum.h:1461
@ IMG_MISSING_LONGDESC
[1.1.2.3]
Definition: tidyenum.h:1461
@ TIDYCUSTOMNO_STRING
no
Definition: tidyenum.h:1458
@ TC_OPT_UPPER
Definition: tidyenum.h:1462
@ LAYOUT_TABLE_INVALID_MARKUP
[5.4.1.1]
Definition: tidyenum.h:1461
@ TC_OPT_WIN1252
Definition: tidyenum.h:1462
@ AUDIO_MISSING_TEXT_SND
[1.1.6.4]
Definition: tidyenum.h:1461
@ MISMATCHED_ATTRIBUTE_WARN
Definition: tidyenum.h:1460
@ SCRIPT_NOT_KEYBOARD_ACCESSIBLE_ON_MOUSE_UP
[9.3.1.2]
Definition: tidyenum.h:1461
@ IMG_ALT_SUSPICIOUS_PLACEHOLDER
[1.1.1.4]
Definition: tidyenum.h:1461
@ MULTIMEDIA_REQUIRES_TEXT
[1.4.1.1]
Definition: tidyenum.h:1461
@ STRING_PLAIN_TEXT
plain text
Definition: tidyenum.h:1458
@ INFORMATION_NOT_CONVEYED_IMAGE
[2.1.1.1]
Definition: tidyenum.h:1461
@ DISCARDING_UNEXPECTED
Definition: tidyenum.h:1460
@ UNKNOWN_ELEMENT_LOOKS_CUSTOM
Definition: tidyenum.h:1460
@ TC_TXT_HELP_3A
Definition: tidyenum.h:1462
@ TC_TXT_HELP_1
Definition: tidyenum.h:1462
@ TC_OPT_UTF16LE
Definition: tidyenum.h:1462
@ ANCHOR_DUPLICATED
Definition: tidyenum.h:1460
@ STRING_DISCARDING
discarding
Definition: tidyenum.h:1458
@ TC_STRING_OPT_NOT_DOCUMENTED
Definition: tidyenum.h:1462
@ TC_STRING_FILE_MANIP
Definition: tidyenum.h:1462
@ UNEXPECTED_ENDTAG_IN
Definition: tidyenum.h:1460
@ REMOVE_FLICKER_OBJECT
[7.1.1.2]
Definition: tidyenum.h:1461
@ TEXT_EQUIVALENTS_REQUIRE_UPDATING_SCRIPT
[6.2.2.2]
Definition: tidyenum.h:1461
@ TC_TXT_HELP_LANG_2
Definition: tidyenum.h:1462
@ DOCTYPE_MISSING
[3.2.1.1]
Definition: tidyenum.h:1461
@ TC_OPT_XMLERRS
Definition: tidyenum.h:1462
@ TC_TXT_HELP_ENV_1B
Definition: tidyenum.h:1462
@ TC_OPT_MODIFY
Definition: tidyenum.h:1462
@ MISSING_SEMICOLON_NCR
Definition: tidyenum.h:1460
@ TC_TXT_HELP_2B
Definition: tidyenum.h:1462
@ TC_OPT_LATIN0
Definition: tidyenum.h:1462
@ LANGUAGE_NOT_IDENTIFIED
[4.1.1.1]
Definition: tidyenum.h:1461
@ TC_OPT_INDENT
Definition: tidyenum.h:1462
@ TC_TXT_HELP_CONFIG_ALLW
Definition: tidyenum.h:1462
@ ID_NAME_MISMATCH
Definition: tidyenum.h:1460
@ STRING_XML_DECLARATION
XML declaration.
Definition: tidyenum.h:1458
@ STYLESHEETS_REQUIRE_TESTING_STYLE_ELEMENT
[6.1.1.2]
Definition: tidyenum.h:1461
@ PREVIOUS_LOCATION
Definition: tidyenum.h:1460
@ ELEMENT_NOT_EMPTY
Definition: tidyenum.h:1460
@ STRING_NEEDS_INTERVENTION
Definition: tidyenum.h:1459
@ LANGUAGE_INVALID
[4.3.1.1]
Definition: tidyenum.h:1461
@ IMG_MAP_SERVER_REQUIRES_TEXT_LINKS
[1.2.1.1]
Definition: tidyenum.h:1461
@ STRING_NOT_ALL_SHOWN
Definition: tidyenum.h:1459
@ REPLACE_DEPRECATED_HTML_MENU
[11.2.1.7]
Definition: tidyenum.h:1461
@ TC_STRING_CONF_HEADER
Definition: tidyenum.h:1462
@ INVALID_ATTRIBUTE
Definition: tidyenum.h:1460
@ MALFORMED_DOCTYPE
Definition: tidyenum.h:1460
@ INFORMATION_NOT_CONVEYED_SCRIPT
[2.1.1.4]
Definition: tidyenum.h:1461
@ TC_STRING_MUST_SPECIFY
Definition: tidyenum.h:1462
@ TIDYCUSTOMPRE_STRING
pre
Definition: tidyenum.h:1458
@ INVALID_NCR
Definition: tidyenum.h:1460
@ STRING_NO_ERRORS
Definition: tidyenum.h:1459
@ JOINING_ATTRIBUTE
Definition: tidyenum.h:1460
@ COLOR_CONTRAST_VISITED_LINK
[2.2.1.4]
Definition: tidyenum.h:1461
@ POTENTIAL_HEADER_BOLD
[3.5.2.1]
Definition: tidyenum.h:1461
@ TC_OPT_XMLSTRG
Definition: tidyenum.h:1462
@ MALFORMED_COMMENT
Definition: tidyenum.h:1460
@ TC_OPT_CLEAN
Definition: tidyenum.h:1462
@ REMOVED_HTML5
Definition: tidyenum.h:1460
@ TC_STRING_CONF_NAME
Definition: tidyenum.h:1462
@ BAD_SURROGATE_PAIR
Definition: tidyenum.h:1460
@ INFORMATION_NOT_CONVEYED_INPUT
[2.1.1.5]
Definition: tidyenum.h:1461
@ IMG_MISSING_ALT
[1.1.1.1]
Definition: tidyenum.h:1461
@ MISSING_DOCTYPE
Definition: tidyenum.h:1460
@ TC_LABEL_FILE
Definition: tidyenum.h:1462
@ TC_STRING_OUT_OF_MEMORY
Definition: tidyenum.h:1462
@ MISSING_SEMICOLON
Definition: tidyenum.h:1460
@ REPLACE_DEPRECATED_HTML_U
[11.2.1.10]
Definition: tidyenum.h:1461
@ NOFRAMES_INVALID_NO_VALUE
[6.5.1.2]
Definition: tidyenum.h:1461
@ COLOR_CONTRAST_LINK
[2.2.1.2]
Definition: tidyenum.h:1461
@ PROGRAMMATIC_OBJECTS_REQUIRE_TESTING_SCRIPT
[6.3.1.1]
Definition: tidyenum.h:1461
@ TAG_NOT_ALLOWED_IN
Definition: tidyenum.h:1460
@ TC_TXT_HELP_3
Definition: tidyenum.h:1462
@ NOFRAMES_INVALID_CONTENT
[6.5.1.3]
Definition: tidyenum.h:1461
@ INSERTING_AUTO_ATTRIBUTE
Definition: tidyenum.h:1460
@ TC_OPT_HELPENV
Definition: tidyenum.h:1462
@ STYLESHEETS_REQUIRE_TESTING_STYLE_ATTR
[6.1.1.3]
Definition: tidyenum.h:1461
@ IMG_BUTTON_MISSING_ALT
[1.1.2.5]
Definition: tidyenum.h:1461
@ ELEMENT_VERS_MISMATCH_ERROR
Definition: tidyenum.h:1460
@ MALFORMED_COMMENT_WARN
Definition: tidyenum.h:1460
@ CANT_BE_NESTED
Definition: tidyenum.h:1460
@ TC_OPT_CONFIG
Definition: tidyenum.h:1462
@ DATA_TABLE_MISSING_HEADERS
[5.1.2.1]
Definition: tidyenum.h:1461
@ TC_TXT_HELP_LANG_3
Definition: tidyenum.h:1462
@ SCRIPT_MISSING_NOSCRIPT
[1.1.10.1]
Definition: tidyenum.h:1461
@ PROGRAMMATIC_OBJECTS_REQUIRE_TESTING_EMBED
[6.3.1.3]
Definition: tidyenum.h:1461
@ STYLESHEETS_REQUIRE_TESTING_LINK
[6.1.1.1]
Definition: tidyenum.h:1461
@ LINE_COLUMN_STRING
line d column d
Definition: tidyenum.h:1458
@ ILLEGAL_NESTING
Definition: tidyenum.h:1460
@ IMAGE_MAP_SERVER_SIDE_REQUIRES_CONVERSION
[9.1.1.1]
Definition: tidyenum.h:1461
@ TEXT_GENERAL_INFO_PLEA
Definition: tidyenum.h:1459
@ ENSURE_PROGRAMMATIC_OBJECTS_ACCESSIBLE_OBJECT
[8.1.1.2]
Definition: tidyenum.h:1461
@ TC_LABEL_LEVL
Definition: tidyenum.h:1462
@ FRAME_SRC_INVALID
[6.2.1.1]
Definition: tidyenum.h:1461
@ MISSING_QUOTEMARK_OPEN
Definition: tidyenum.h:1460
@ SPACE_PRECEDING_XMLDECL
Definition: tidyenum.h:1460
@ TIDYCUSTOMEMPTY_STRING
empty
Definition: tidyenum.h:1458
@ FRAME_MISSING_TITLE
[12.1.1.1]
Definition: tidyenum.h:1461
@ INVALID_XML_ID
Definition: tidyenum.h:1460
@ SCRIPT_NOT_KEYBOARD_ACCESSIBLE_ON_CLICK
[9.3.1.3]
Definition: tidyenum.h:1461
@ ELEMENT_VERS_MISMATCH_WARN
Definition: tidyenum.h:1460
@ PROPRIETARY_ATTR_VALUE
Definition: tidyenum.h:1460
@ REMOVE_AUTO_REDIRECT
[7.5.1.1]
Definition: tidyenum.h:1461
@ ASSOCIATE_LABELS_EXPLICITLY_ID
[12.4.1.3]
Definition: tidyenum.h:1461
@ REPLACE_DEPRECATED_HTML_CENTER
[11.2.1.3]
Definition: tidyenum.h:1461
@ XML_ID_SYNTAX
Definition: tidyenum.h:1460
@ TC_OPT_ASXML
Definition: tidyenum.h:1462
@ INVALID_SGML_CHARS
Definition: tidyenum.h:1460
@ POTENTIAL_HEADER_ITALICS
[3.5.2.2]
Definition: tidyenum.h:1461
@ TC_OPT_ASHTML
Definition: tidyenum.h:1462
@ TABLE_MAY_REQUIRE_HEADER_ABBR
[5.6.1.1]
Definition: tidyenum.h:1461
@ TC_LABEL_OPT
Definition: tidyenum.h:1462
@ TC_OPT_BIG5
Definition: tidyenum.h:1462
@ TC_OPT_ERRORS
Definition: tidyenum.h:1462
@ REPLACE_DEPRECATED_HTML_APPLET
[10.2.1.1]
Definition: tidyenum.h:1461
@ ENSURE_PROGRAMMATIC_OBJECTS_ACCESSIBLE_SCRIPT
[8.1.1.1]
Definition: tidyenum.h:1461
@ REPLACE_DEPRECATED_HTML_DIR
[11.2.1.4]
Definition: tidyenum.h:1461
@ TC_MAIN_ERROR_LOAD_CONFIG
Definition: tidyenum.h:1462
@ TC_STRING_CONF_VALUE
Definition: tidyenum.h:1462
@ NEW_WINDOWS_REQUIRE_WARNING_NEW
[10.1.1.1]
Definition: tidyenum.h:1461
@ BAD_SURROGATE_LEAD
Definition: tidyenum.h:1460
@ MISSING_ENDTAG_FOR
Definition: tidyenum.h:1460
@ REPEATED_ATTRIBUTE
Definition: tidyenum.h:1460
@ SCRIPT_NOT_KEYBOARD_ACCESSIBLE_ON_MOUSE_OUT
[9.3.1.5]
Definition: tidyenum.h:1461
@ TC_STRING_CHAR_ENCODING
Definition: tidyenum.h:1462
@ TC_OPT_FILE
Definition: tidyenum.h:1462
@ TEXT_GENERAL_INFO
Definition: tidyenum.h:1459
@ STRING_HTML_PROPRIETARY
HTML Proprietary.
Definition: tidyenum.h:1458
@ TEXT_EQUIVALENTS_REQUIRE_UPDATING_OBJECT
[6.2.2.3]
Definition: tidyenum.h:1461
@ TC_OPT_RAW
Definition: tidyenum.h:1462
@ ILLEGAL_URI_CODEPOINT
Definition: tidyenum.h:1460
@ IMG_ALT_SUSPICIOUS_FILENAME
[1.1.1.2]
Definition: tidyenum.h:1461
@ TidyWarning
Report: Warning message.
Definition: tidyenum.h:1404
@ TidyAccess
Report: Accessibility message.
Definition: tidyenum.h:1406
@ TidyFatal
Report: Crash!
Definition: tidyenum.h:1409
@ TidyDialogueFootnote
Dialogue: Footnote.
Definition: tidyenum.h:1412
@ TidyInfo
Report: Information about markup usage.
Definition: tidyenum.h:1403
@ TidyBadDocument
Report: I/O or file system error.
Definition: tidyenum.h:1408
@ TidyDialogueSummary
Dialogue: Summary-related information.
Definition: tidyenum.h:1410
@ TidyError
Report: Error message - output suppressed.
Definition: tidyenum.h:1407
@ TidyDialogueInfo
Dialogue: Non-document related information.
Definition: tidyenum.h:1411
@ TidyConfig
Report: Configuration error.
Definition: tidyenum.h:1405
@ TidyShowMetaChange
show when meta http-equiv content charset was changed - compatibility
Definition: tidyenum.h:658
@ TidyWrapJste
Wrap within JSTE pseudo elements.
Definition: tidyenum.h:673
@ TidyLiteralAttribs
If true attributes may use newlines.
Definition: tidyenum.h:625
@ TidyInlineTags
Declared inline tags.
Definition: tidyenum.h:620
@ TidyWrapLen
Wrap margin.
Definition: tidyenum.h:674
@ TidyDropPropAttrs
Discard proprietary attributes.
Definition: tidyenum.h:596
@ TidyWord2000
Draconian cleaning for Word2000.
Definition: tidyenum.h:670
@ TidyOutputBOM
Output a Byte Order Mark (BOM) for UTF-16 encodings.
Definition: tidyenum.h:643
@ TidyStyleTags
Move style to head.
Definition: tidyenum.h:663
@ TidyStrictTagsAttr
Ensure tags and attributes match output HTML version.
Definition: tidyenum.h:662
@ TidyNumEntities
Use numeric entities.
Definition: tidyenum.h:639
@ TidyMergeDivs
Merge multiple DIVs.
Definition: tidyenum.h:631
@ TidyOutFile
File name to write markup to.
Definition: tidyenum.h:642
@ TidyQuiet
No 'Parsing X', guessed DTD or summary.
Definition: tidyenum.h:649
@ TidyWarnPropAttrs
Warns on proprietary attributes.
Definition: tidyenum.h:669
@ TidyPunctWrap
consider punctuation and breaking spaces for wrapping
Definition: tidyenum.h:648
@ TidyForceOutput
Output document even if errors were found.
Definition: tidyenum.h:611
@ TidyWrapScriptlets
Wrap within JavaScript string literals.
Definition: tidyenum.h:676
@ TidyShowErrors
Number of errors to put out.
Definition: tidyenum.h:654
@ TidyEmptyTags
Declared empty tags.
Definition: tidyenum.h:602
@ TidyDropEmptyElems
Discard empty elements.
Definition: tidyenum.h:594
@ TidyPreserveEntities
Preserve entities.
Definition: tidyenum.h:645
@ TidyMark
Add meta element indicating tidied doc.
Definition: tidyenum.h:630
@ TidyOmitOptionalTags
Suppress optional start tags and end tags.
Definition: tidyenum.h:640
@ TidySortAttributes
Sort attributes.
Definition: tidyenum.h:661
@ TidyKeepFileTimes
If yes last modied time is preserved.
Definition: tidyenum.h:623
@ TidyIndentAttributes
Newline+indent before each attribute.
Definition: tidyenum.h:616
@ TidyNewline
Output line ending (default to platform)
Definition: tidyenum.h:638
@ TidyAsciiChars
Convert quotes and dashes to nearest ASCII char.
Definition: tidyenum.h:579
@ TidyPPrintTabs
Indent using tabs instead of spaces.
Definition: tidyenum.h:644
@ TidyErrFile
File name to write errors to.
Definition: tidyenum.h:605
@ TidyMuteReports
Filter these messages from output.
Definition: tidyenum.h:635
@ TidyAltText
Default text for alt attribute.
Definition: tidyenum.h:577
@ TidyQuoteMarks
Output " marks as ".
Definition: tidyenum.h:651
@ TidyXhtmlOut
Output extensible HTML.
Definition: tidyenum.h:679
@ TidyReplaceColor
Replace hex color attribute values with names.
Definition: tidyenum.h:653
@ TidyMakeBare
Replace smart quotes, em dashes, etc with ASCII.
Definition: tidyenum.h:628
@ TidyEncloseBodyText
If yes text at body is wrapped in P's.
Definition: tidyenum.h:604
@ TidyBodyOnly
Output BODY content only.
Definition: tidyenum.h:581
@ TidyMuteShow
Show message ID's in the error table.
Definition: tidyenum.h:636
@ TidyUpperCaseTags
Output tags in upper not lower case.
Definition: tidyenum.h:666
@ TidyCharEncoding
In/out character encoding.
Definition: tidyenum.h:583
@ TidyMergeSpans
Merge multiple SPANs.
Definition: tidyenum.h:633
@ TidyWrapPhp
Wrap consecutive PHP pseudo elements.
Definition: tidyenum.h:675
@ TidyIndentSpaces
Indentation n spaces/tabs.
Definition: tidyenum.h:619
@ TidyXmlPIs
If set to yes PIs must end with ?>
Definition: tidyenum.h:682
@ TidyHideComments
Hides all (real) comments in output.
Definition: tidyenum.h:613
@ TidyEncloseBlockText
If yes text in blocks is wrapped in P's.
Definition: tidyenum.h:603
@ TidyWrapSection
Wrap within <![ ...
Definition: tidyenum.h:677
@ TidyInCharEncoding
Input character encoding (if different)
Definition: tidyenum.h:615
@ TidyFixComments
Fix comments with adjacent hyphens.
Definition: tidyenum.h:609
@ TidyShowMarkup
If false, normal output is suppressed.
Definition: tidyenum.h:657
@ TidyBreakBeforeBR
Output newline before or not?
Definition: tidyenum.h:582
@ TidyLogicalEmphasis
Replace i by em and b by strong.
Definition: tidyenum.h:626
@ TidyQuoteAmpersand
Output naked ampersand as &.
Definition: tidyenum.h:650
@ TidyJoinStyles
Join multiple style attributes.
Definition: tidyenum.h:622
@ TidyDoctype
User specified doctype.
Definition: tidyenum.h:590
@ TidyNCR
Allow numeric character references.
Definition: tidyenum.h:637
@ TidyPreTags
Declared pre tags.
Definition: tidyenum.h:646
@ TidyPriorityAttributes
Attributes to place first in an element.
Definition: tidyenum.h:647
@ TidyCSSPrefix
CSS class naming for clean option.
Definition: tidyenum.h:585
@ TidyBlockTags
Declared block tags.
Definition: tidyenum.h:580
@ TidyMergeEmphasis
Merge nested B and I elements.
Definition: tidyenum.h:632
@ TidyAnchorAsName
Define anchors as name attributes.
Definition: tidyenum.h:578
@ TidySkipNested
Skip nested tags in script and style CDATA.
Definition: tidyenum.h:660
@ TidyEmacs
If true, format error output for GNU Emacs.
Definition: tidyenum.h:598
@ TidyAccessibilityCheckLevel
Accessibility check level.
Definition: tidyenum.h:576
@ TidyXmlDecl
Add <?xml?> for XML docs.
Definition: tidyenum.h:680
@ TidyOutCharEncoding
Output character encoding (if different)
Definition: tidyenum.h:641
@ TidyDecorateInferredUL
Mark inferred UL elements with no indent CSS.
Definition: tidyenum.h:589
@ TidyUseCustomTags
Enable Tidy to use autonomous custom tags.
Definition: tidyenum.h:667
@ TidyDuplicateAttrs
Keep first or last duplicate attribute.
Definition: tidyenum.h:597
@ TidyMakeClean
Replace presentational clutter by style rules.
Definition: tidyenum.h:629
@ TidyWrapAttVals
Wrap within attribute values.
Definition: tidyenum.h:672
@ TidyWrapAsp
Wrap within ASP pseudo elements.
Definition: tidyenum.h:671
@ TidyXmlTags
Treat input as XML.
Definition: tidyenum.h:684
@ TidyShowFilename
If true, the input filename is displayed with the error messages.
Definition: tidyenum.h:655
@ TidyXmlOut
Create output as XML.
Definition: tidyenum.h:681
@ TidyCoerceEndTags
Coerce end tags from start tags where probably intended.
Definition: tidyenum.h:584
@ TidyVertSpace
degree to which markup is spread out vertically
Definition: tidyenum.h:668
@ TidyGDocClean
Clean up HTML exported from Google Docs.
Definition: tidyenum.h:612
@ TidyQuoteNbsp
Output non-breaking space as entity.
Definition: tidyenum.h:652
@ TidyHtmlOut
Output plain HTML, even for XHTML input.
Definition: tidyenum.h:614
@ TidyIndentContent
Indent content of appropriate tags.
Definition: tidyenum.h:618
@ TidyFixBackslash
Fix URLs by replacing \ with /.
Definition: tidyenum.h:608
@ TidyJoinClasses
Join multiple class attributes.
Definition: tidyenum.h:621
@ TidyFixUri
Applies URI encoding if necessary.
Definition: tidyenum.h:610
@ TidyShowWarnings
However errors are always shown.
Definition: tidyenum.h:659
@ TidyWriteBack
If true then output tidied markup.
Definition: tidyenum.h:678
@ TidyEscapeScripts
Escape items that look like closing tags in script tags.
Definition: tidyenum.h:607
@ TidyDropEmptyParas
Discard empty p elements.
Definition: tidyenum.h:595
@ TidyXmlSpace
If set to yes adds xml:space attr as needed.
Definition: tidyenum.h:683
@ TidyKeepTabs
If yes keep input source tabs.
Definition: tidyenum.h:624
@ TidyShowInfo
If true, info-level messages are shown.
Definition: tidyenum.h:656
@ TidyLowerLiterals
Folds known attribute values to lower case.
Definition: tidyenum.h:627
@ TidyTabSize
Expand tabs to n spaces.
Definition: tidyenum.h:664
@ TidyIndentCdata
Indent <!CDATA[ ...
Definition: tidyenum.h:617
@ TidyMetaCharset
Adds/checks/fixes meta charset in the head, based on document type.
Definition: tidyenum.h:634
@ TidyUpperCaseAttrs
Output attributes in upper not lower case.
Definition: tidyenum.h:665
@ TidyEscapeCdata
Replace sections with escaped text.
Definition: tidyenum.h:606
@ TIDY_LANGUAGE
Definition: language.h:31
@ TIDY_MESSAGE_TYPE_LAST
Definition: language.h:34
static uint whichPluralForm_en(uint n)
This language-specific function returns the correct pluralForm to use given n items,...
Definition: language_en.h:31
static languageDefinition language_en
This structure specifies all of the strings needed by Tidy for a single language.
Definition: language_en.h:50
Finally, a complete language definition.
Definition: language.h:68