aboutsummaryrefslogtreecommitdiff
path: root/test/lua/smallcaps-title.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/lua/smallcaps-title.lua')
-rw-r--r--test/lua/smallcaps-title.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/lua/smallcaps-title.lua b/test/lua/smallcaps-title.lua
deleted file mode 100644
index b839ee131..000000000
--- a/test/lua/smallcaps-title.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-return {
- {
- Meta = function(meta)
- -- The call to `MetaInlines` is redundant and used for testing purposes
- -- only. The explicit use of a MetaValue constructor is only useful when
- -- used with an empty table: `MetaInlines{}` is read differently than
- -- `MetaBlocks{}`.
- meta.title = pandoc.MetaInlines{pandoc.SmallCaps(meta.title)}
- return meta
- end
- }
-}