diff options
author | Thomas White <taw@bitwiz.me.uk> | 2019-02-23 16:45:15 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.me.uk> | 2019-02-23 16:45:15 +0100 |
commit | 14c998b253489b88bc4da904409e32c86bbe92c0 (patch) | |
tree | 00bd246717eee5e5e8e1d612e9fbe58807f636e4 /libstorycode/storycode.l | |
parent | 77ef611a5a6ee3bf7456d0fb5f26f708b8433971 (diff) |
Everything needed for demo doc
Diffstat (limited to 'libstorycode/storycode.l')
-rw-r--r-- | libstorycode/storycode.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libstorycode/storycode.l b/libstorycode/storycode.l index 98f8f6a..0406ee3 100644 --- a/libstorycode/storycode.l +++ b/libstorycode/storycode.l @@ -45,12 +45,13 @@ SLIDETITLE { return SC_SLIDETITLE; } NARRATIVE { return SC_NARRATIVE; } SLIDE { return SC_SLIDE; } BP { return SC_BP; } -TYPE { return SC_TYPE; } +GEOMETRY { return SC_GEOMETRY; } TEXT { return SC_TEXTFRAME; } IMAGE { return SC_IMAGEFRAME; } FOOTER { return SC_FOOTER; } FONT { return SC_FONT; } PAD { return SC_PAD; } +PARASPACE { return SC_PARASPACE; } ALIGN { return SC_ALIGN; } FGCOL { return SC_FGCOL; } BGCOL { return SC_BGCOL; } |