From a779b9a9095cfceaa4a0a8da5b4faaaa98287078 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Mon, 25 Feb 2019 21:03:27 +0100 Subject: Parse gradients --- libstorycode/storycode.l | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libstorycode/storycode.l') 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; } +VERT { return SC_VERT; } +VERTICAL { return SC_VERT; } +HORIZ { return SC_HORIZ; } +HORIZONTAL { return SC_HORIZ; } SIZE { return SC_SIZE; } (?i:left) { return SC_LEFT; } (?i:center) { return SC_CENTER; } -- cgit v1.2.3