summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-11-12 15:38:10 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-11-12 15:38:10 -0800
commiteacf1a2f0096135609fa16699980624577db31d7 (patch)
treedda9b6ef9f53ab8549474f5e3ab129f58e6bb127 /doc
parent3d6f98c4a37cc4b0e09f33032f93ed5063a7ea7c (diff)
Fixed typo in lua-filters exmaple.
Diffstat (limited to 'doc')
-rw-r--r--doc/lua-filters.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md
index ab6d221fa..8e59b73ea 100644
--- a/doc/lua-filters.md
+++ b/doc/lua-filters.md
@@ -379,7 +379,7 @@ function Pandoc(doc)
table.insert(hblocks, el)
end
end
- return pandoc.Pandoc(hblocks, meta)
+ return pandoc.Pandoc(hblocks, doc.meta)
end
```