summaryrefslogtreecommitdiff
path: root/doc/lua-filters.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-11-18 13:33:37 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-11-18 13:33:37 -0800
commit17f6621b21fa9c5b64f58e4da38a3ce53b50f7b9 (patch)
tree012be70ba61a3297d06d5a20216628462d028761 /doc/lua-filters.md
parent38ab2eeb9e3c40d5830d7b3aef5d1b78131f3924 (diff)
Update man page lua filter to use text module.
Diffstat (limited to 'doc/lua-filters.md')
-rw-r--r--doc/lua-filters.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md
index a5c9905ab..35610cea3 100644
--- a/doc/lua-filters.md
+++ b/doc/lua-filters.md
@@ -344,11 +344,14 @@ inside headers), removes footnotes, and replaces links
with regular text.
``` lua
+-- we use preloaded text to get a UTF-8 aware 'upper' function
+local text = require('text')
+
function Header(el)
if el.level == 1 then
return pandoc.walk_block(el, {
Str = function(el)
- return pandoc.Str(el.text:upper())
+ return pandoc.Str(text.upper(el.text))
end })
end
end