aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.y
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-05-01 15:59:10 +0200
committerThomas White <taw@bitwiz.me.uk>2019-05-01 15:59:10 +0200
commit97d1fbc1653280857499d76f5203a379892a8e3e (patch)
tree7c8c03bcbbca23ba6e2ae60058a9d38df572fd51 /libstorycode/storycode.y
parent790b6dee8468ded9b795cba008db66916217018b (diff)
Add style for footer
Diffstat (limited to 'libstorycode/storycode.y')
-rw-r--r--libstorycode/storycode.y5
1 files changed, 5 insertions, 0 deletions
diff --git a/libstorycode/storycode.y b/libstorycode/storycode.y
index 4c418eb..a9c3f13 100644
--- a/libstorycode/storycode.y
+++ b/libstorycode/storycode.y
@@ -371,6 +371,7 @@ style_slide_def:
| style_slide_def style_slide_prestitle { }
| style_slide_def style_slide_text { }
| style_slide_def style_slide_title { }
+| style_slide_def style_slide_footer { }
;
background:
@@ -400,6 +401,10 @@ style_slide_text:
TEXTFRAME '{' styledefs '}' { set_style(ctx, "SLIDE.TEXT"); }
;
+style_slide_footer:
+ FOOTER '{' styledefs '}' { set_style(ctx, "SLIDE.FOOTER"); }
+;
+
styledefs:
%empty
| styledefs styledef