aboutsummaryrefslogtreecommitdiffhomepage
path: root/resources/slides_utils.lua
diff options
context:
space:
mode:
Diffstat (limited to 'resources/slides_utils.lua')
-rw-r--r--resources/slides_utils.lua21
1 files changed, 16 insertions, 5 deletions
diff --git a/resources/slides_utils.lua b/resources/slides_utils.lua
index a0b42b4425..24e58cee51 100644
--- a/resources/slides_utils.lua
+++ b/resources/slides_utils.lua
@@ -58,6 +58,10 @@ function parse_transition_type(s)
return s:match("^<%s*transition%s*=%s*(%a+)%s*>$")
end
+function parse_blockstyle_type(s)
+ return s:match("^<%s*blockstyle%s*=%s*(%a+)%s*>$")
+end
+
function parse_file(file)
local slides = {}
local block = {}
@@ -71,14 +75,21 @@ function parse_file(file)
end
else
local transition_type = parse_transition_type(s)
+ local blockstyle = parse_blockstyle_type(s)
if transition_type then
block["transition"] = transition_type
+ elseif blockstyle then
+ block["blockstyle"] = blockstyle
else
- local n = count_hypens(s)
- block[#block + 1] = {
- indent = n,
- text = trim_ws(s:sub(n + 1, -1))
- }
+ if block.blockstyle == "code" then
+ block[#block + 1] = { text = line }
+ else
+ local n = count_hypens(s)
+ block[#block + 1] = {
+ indent = n,
+ text = trim_ws(s:sub(n + 1, -1))
+ }
+ end
end
end
end