aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.y
diff options
context:
space:
mode:
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: