From d321c825e10eaaec66f3584e2bdb8edda4e44e0e Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 10 May 2019 00:09:27 +0200 Subject: Add end of presentation marker --- libstorycode/storycode.y | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libstorycode/storycode.y') 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: -- cgit v1.2.3