Fixed the enum, which has TidyCustomTags and TidyUseCustomTags documented backwards.

This commit is contained in:
Jim Derry 2017-03-18 11:20:56 -04:00
parent 73f68e2b2a
commit 89e4a0215a

View file

@ -70,7 +70,9 @@ typedef enum
TidyCharEncoding, /**< In/out character encoding */ TidyCharEncoding, /**< In/out character encoding */
TidyCoerceEndTags, /**< Coerce end tags from start tags where probably intended */ TidyCoerceEndTags, /**< Coerce end tags from start tags where probably intended */
TidyCSSPrefix, /**< CSS class naming for clean option */ TidyCSSPrefix, /**< CSS class naming for clean option */
TidyCustomTags, /**< Enable Tidy to use autonomous custom tags */ #ifndef DOXYGEN_SHOULD_SKIP_THIS
TidyCustomTags, /**< Internal use ONLY */
#endif
TidyDecorateInferredUL, /**< Mark inferred UL elements with no indent CSS */ TidyDecorateInferredUL, /**< Mark inferred UL elements with no indent CSS */
TidyDoctype, /**< User specified doctype */ TidyDoctype, /**< User specified doctype */
#ifndef DOXYGEN_SHOULD_SKIP_THIS #ifndef DOXYGEN_SHOULD_SKIP_THIS
@ -155,9 +157,7 @@ typedef enum
TidyTabSize, /**< Expand tabs to n spaces */ TidyTabSize, /**< Expand tabs to n spaces */
TidyUpperCaseAttrs, /**< Output attributes in upper not lower case */ TidyUpperCaseAttrs, /**< Output attributes in upper not lower case */
TidyUpperCaseTags, /**< Output tags in upper not lower case */ TidyUpperCaseTags, /**< Output tags in upper not lower case */
#ifndef DOXYGEN_SHOULD_SKIP_THIS TidyUseCustomTags, /**< Enable Tidy to use autonomous custom tags */
TidyUseCustomTags, /**< Internal use ONLY */
#endif
TidyVertSpace, /**< degree to which markup is spread out vertically */ TidyVertSpace, /**< degree to which markup is spread out vertically */
TidyWord2000, /**< Draconian cleaning for Word2000 */ TidyWord2000, /**< Draconian cleaning for Word2000 */
TidyWrapAsp, /**< Wrap within ASP pseudo elements */ TidyWrapAsp, /**< Wrap within ASP pseudo elements */