GMarkupParseFlags

Flags that affect the behaviour of the parser. G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG flag you should not use G_MARKUP_TREAT_CDATA_AS_TEXT When this flag is set, CDATA marked sections are not passed literally to the passthrough function of the parser. Instead, the content of the section (without the <![CDATA[ and ]]>) is passed to the text function. This flag was added in GLib 2.12 G_MARKUP_PREFIX_ERROR_POSITION Normally errors caught by GMarkup itself have line/column information prefixed to them to let the caller know the location of the error. When this flag is set the location information is also prefixed to errors generated by the GMarkupParser implementation functions

Values

ValueMeaning
DO_NOT_USE_THIS_UNSUPPORTED_FLAG1 << 0
TREAT_CDATA_AS_TEXT1 << 1
PREFIX_ERROR_POSITION1 << 2

Meta