summaryrefslogtreecommitdiff
path: root/sys/src/cmd/mothra/html.h
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-03-15 17:05:24 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2015-03-15 17:05:24 +0100
commit6411efcde8e9fea9c7a791a76578823bfe0942cb (patch)
tree0a6df448b90a4687e48f6ebf168c68e0b418b0f3 /sys/src/cmd/mothra/html.h
parente451804a75ac4931e981eec8ba8d7a7a503a0585 (diff)
mothra: add <strike> support
Diffstat (limited to 'sys/src/cmd/mothra/html.h')
-rw-r--r--sys/src/cmd/mothra/html.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/src/cmd/mothra/html.h b/sys/src/cmd/mothra/html.h
index f486755be..951feeeb9 100644
--- a/sys/src/cmd/mothra/html.h
+++ b/sys/src/cmd/mothra/html.h
@@ -34,6 +34,7 @@ struct Stack{
int number; /* paragraph number */
int ismap; /* flag of <img> */
int isscript; /* inside <script> */
+ int strike; /* flag of <strike> */
int width; /* size of image */
int height;
char image[NNAME]; /* arg of <img> */
@@ -183,10 +184,12 @@ enum{
Tag_p,
Tag_plaintext,
Tag_pre,
+ Tag_s,
Tag_samp,
Tag_script,
Tag_select,
Tag_span,
+ Tag_strike,
Tag_strong,
Tag_style,
Tag_source,