mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-10 11:27:06 +00:00
5be9052f5f
The flag 'lua53` must now be used with that package if pandoc is to be compiled against Lua 5.3.
13 lines
397 B
Lua
13 lines
397 B
Lua
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
|
|
}
|
|
}
|