aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.y
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-05-10 00:09:27 +0200
committerThomas White <taw@bitwiz.me.uk>2019-05-10 00:20:30 +0200
commitd321c825e10eaaec66f3584e2bdb8edda4e44e0e (patch)
tree21bce781b269344b4d757443173c6ead2244c1a0 /libstorycode/storycode.y
parentc3426c404324c2a629fe1403da548699abf9592d (diff)
Add end of presentation marker
Diffstat (limited to 'libstorycode/storycode.y')
-rw-r--r--libstorycode/storycode.y2
1 files changed, 2 insertions, 0 deletions
diff --git a/libstorycode/storycode.y b/libstorycode/storycode.y
index b32173e..b5ac68e 100644
--- a/libstorycode/storycode.y
+++ b/libstorycode/storycode.y
@@ -61,6 +61,7 @@
%token STYLES
%token SLIDE
+%token EOP
%token NARRATIVE
%token PRESTITLE
%token SLIDETITLE
@@ -206,6 +207,7 @@ narrative_el:
| narrative_bulletpoint { narrative_add_bp(ctx->n, $1); }
| slide { }
| STRING { narrative_add_text(ctx->n, $1); }
+| EOP { narrative_add_eop(ctx->n); }
;
narrative_prestitle: