summaryrefslogtreecommitdiff
path: root/test/lua/strmacro.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/lua/strmacro.lua')
-rw-r--r--test/lua/strmacro.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/lua/strmacro.lua b/test/lua/strmacro.lua
index 1b28801be..40756a476 100644
--- a/test/lua/strmacro.lua
+++ b/test/lua/strmacro.lua
@@ -1,10 +1,11 @@
return {
- { Str = function (inline)
- if inline.c == "{{helloworld}}" then
+ {
+ Str = function (str)
+ if str == "{{helloworld}}" then
return pandoc.Emph {pandoc.Str "Hello, World"}
else
- return inline
+ return pandoc.Str(str)
end
- end,
+ end,
}
}