From 5c71e5afbfb127f4a7fc225610a486d33e21cdb4 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 12 Nov 2017 15:51:10 -0800 Subject: Improve handout example. --- doc/lua-filters.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/lua-filters.md b/doc/lua-filters.md index 8e59b73ea..5703a68ec 100644 --- a/doc/lua-filters.md +++ b/doc/lua-filters.md @@ -365,8 +365,10 @@ end ## Creating a handout from a paper This filter extracts all the numbered examples, section -headers, block quotes from a document, in addition to any -divs with class `handout`: +headers, block quotes, and figures from a document, in addition +to any divs with class `handout`. (Note that only blocks +at the "outer level" are included; this ignores blocks inside +nested constructs, like list items.) ``` lua function Pandoc(doc) @@ -375,6 +377,7 @@ function Pandoc(doc) if (el.t == "Div" and el.classes[1] == "handout") or (el.t == "BlockQuote") or (el.t == "OrderedList" and el.style == "Example") or + (el.t == "Para" and #el.c == 1 and el.c[1].t == "Image") or (el.t == "Header") then table.insert(hblocks, el) end -- cgit v1.2.3