summaryrefslogtreecommitdiff
path: root/paper/lua-filters/wordcount/README.md
blob: 45efc2f5f233e15107a22e4a01b543de7c45c2a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
# wordcount

This filter counts the words in the body of a document (omitting
metadata like titles and abstracts), including words in code.
It should be more accurate than `wc -w` run directly on a
Markdown document, since the latter will count markup
characters, like the `#` in front of an ATX header, or
tags in HTML documents, as words.

To run it, `pandoc --lua-filter wordcount.lua myfile.md`.
The word count will be printed to stdout.