fix output

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Christine Dodrill 2021-04-23 15:52:48 -04:00
parent f1069eb1db
commit 46005f9d72

View File

@ -25,6 +25,6 @@ wordcount = {
function Pandoc(el)
-- skip metadata, just count body:
pandoc.walk_block(pandoc.Div(el.blocks), wordcount)
print(" " .. words .. " words in body")
print(words .. " words in body")
os.exit(0)
end