diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-06-28 15:31:42 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-06-28 15:31:42 +0200 |
commit | c505de59c022e2c02b6b220da0849a4e67394d6a (patch) | |
tree | 187261a99a4b38484f175922ed18668cfb0ce5fe /doc | |
parent | 2902260b636b36134c0157e32291900603e1011d (diff) | |
download | pandoc-c505de59c022e2c02b6b220da0849a4e67394d6a.tar.gz |
Added link-table example to doc/lua-filters.md.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua-filters.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md index 145a1517f..34165a791 100644 --- a/doc/lua-filters.md +++ b/doc/lua-filters.md @@ -107,3 +107,40 @@ return { end, } ``` + +### Extracting information about links + +This filter prints a table of all the URLs linked to +in the document, together with the number of links to +that URL. + +```lua +links = {} + +function Link (el) + if links[el.target] then + links[el.target] = links[el.target] + 1 + else + links[el.target] = 1 + end + return el +end + +function Doc (blocks, meta) + function strCell(str) + return {pandoc.Plain{pandoc.Str(str)}} + end + local caption = {pandoc.Str "Link", pandoc.Space(), pandoc.Str "count"} + local aligns = {pandoc.AlignDefault, pandoc.AlignLeft} + local widths = {0.8, 0.2} + local headers = {strCell "Target", strCell "Count"} + local rows = {} + for link, count in pairs(links) do + rows[#rows + 1] = {strCell(link), strCell(count)} + end + return pandoc.Doc( + {pandoc.Table(caption, aligns, widths, headers, rows)}, + meta + ) +end +``` |