aboutsummaryrefslogtreecommitdiff
path: root/libsylph/html.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-05-14 09:13:57 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-05-14 09:13:57 +0000
commit0efce4ac1ec396cd9d389a607c2a69bbd505dd8a (patch)
treece4c6dcd8c55c48e22bec4c2990f44b31d0bb12a /libsylph/html.h
parent7cc11916c2c87fb93a1ef39204751c96659d9c60 (diff)
support blockquote tag.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3252 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/html.h')
-rw-r--r--libsylph/html.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libsylph/html.h b/libsylph/html.h
index 0009d3a4..bdf9257c 100644
--- a/libsylph/html.h
+++ b/libsylph/html.h
@@ -38,7 +38,8 @@ typedef enum
HTML_UNKNOWN,
HTML_CONV_FAILED,
HTML_ERR,
- HTML_EOF
+ HTML_EOF,
+ HTML_BLOCKQUOTE
} HTMLState;
typedef struct _HTMLParser HTMLParser;
@@ -65,6 +66,7 @@ struct _HTMLParser
gboolean empty_line;
gboolean space;
gboolean pre;
+ gint blockquote;
};
struct _HTMLAttr