Merge pull request #995 from htacg/debug_outp

Refactored debug output.
This commit is contained in:
Jim Derry 2021-08-23 11:11:09 -04:00 committed by GitHub
commit 023cbd3f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 319 additions and 212 deletions

View File

@ -388,19 +388,15 @@ struct _Lexer
/**
* modes for GetToken()
*
* MixedContent -- for elements which don't accept PCDATA
* Preformatted -- white space preserved as is
* IgnoreMarkup -- for CDATA elements such as script, style
*/
typedef enum
{
IgnoreWhitespace,
MixedContent,
Preformatted,
IgnoreMarkup,
OtherNamespace,
CdataContent
IgnoreWhitespace, /**< */
MixedContent, /**< for elements which don't accept PCDATA */
Preformatted, /**< white space preserved as is */
IgnoreMarkup, /**< for CDATA elements such as script, style */
OtherNamespace, /**< */
CdataContent /**< */
} GetTokenMode;

File diff suppressed because it is too large Load Diff