aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.l
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-02-25 21:03:27 +0100
committerThomas White <taw@bitwiz.me.uk>2019-02-25 21:03:27 +0100
commita779b9a9095cfceaa4a0a8da5b4faaaa98287078 (patch)
tree5cc65c14e82c22e78836f91c4cd34179c04892f1 /libstorycode/storycode.l
parent0a146090aa9dc02f5568e9c314e11ab69b40d225 (diff)
Parse gradients
Diffstat (limited to 'libstorycode/storycode.l')
-rw-r--r--libstorycode/storycode.l4
1 files changed, 4 insertions, 0 deletions
diff --git a/libstorycode/storycode.l b/libstorycode/storycode.l
index 3a7704f..d64b8c0 100644
--- a/libstorycode/storycode.l
+++ b/libstorycode/storycode.l
@@ -62,6 +62,10 @@ PARASPACE { BEGIN(paraspace); return SC_PARASPACE; }
ALIGN { BEGIN(align); return SC_ALIGN; }
FGCOL { BEGIN(col); return SC_FGCOL; }
BGCOL { BEGIN(col); return SC_BGCOL; }
+<col>VERT { return SC_VERT; }
+<col>VERTICAL { return SC_VERT; }
+<col>HORIZ { return SC_HORIZ; }
+<col>HORIZONTAL { return SC_HORIZ; }
SIZE { return SC_SIZE; }
<align,sqb>(?i:left) { return SC_LEFT; }
<align,sqb>(?i:center) { return SC_CENTER; }