summaryrefslogtreecommitdiff
path: root/src/tokeniser/tokeniser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tokeniser/tokeniser.h')
-rw-r--r--src/tokeniser/tokeniser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tokeniser/tokeniser.h b/src/tokeniser/tokeniser.h
index a5bc8de..0ccb7d1 100644
--- a/src/tokeniser/tokeniser.h
+++ b/src/tokeniser/tokeniser.h
@@ -36,18 +36,18 @@ typedef union hubbub_tokeniser_optparams {
struct {
hubbub_token_handler handler;
void *pw;
- } token_handler;
+ } token_handler; /**< Token handling callback */
struct {
hubbub_error_handler handler;
void *pw;
- } error_handler;
+ } error_handler; /**< Error handling callback */
struct {
hubbub_content_model model;
- } content_model;
+ } content_model; /**< Current content model */
- bool process_cdata;
+ bool process_cdata; /**< Whether to process CDATA sections*/
} hubbub_tokeniser_optparams;
/* Create a hubbub tokeniser */