Shake.hs, tools/pandoc-drop-notes: remove unused filter

This commit is contained in:
Everett Hildenbrandt 2018-04-22 22:16:49 -06:00 committed by Simon Michael
parent fbc9c63c62
commit 95c9af5664
2 changed files with 0 additions and 5 deletions

View File

@ -207,7 +207,6 @@ main = do
"--lua-filter tools/pandoc-drop-html-blocks.lua"
"--lua-filter tools/pandoc-drop-html-inlines.lua"
"--lua-filter tools/pandoc-drop-links.lua"
"--lua-filter tools/pandoc-drop-notes.lua"
"-o" out
-- render man page nroffs to fixed-width text for embedding in executables, with nroff
@ -235,7 +234,6 @@ main = do
"--lua-filter tools/pandoc-drop-html-blocks.lua"
"--lua-filter tools/pandoc-drop-html-inlines.lua"
"--lua-filter tools/pandoc-drop-links.lua"
"--lua-filter tools/pandoc-drop-notes.lua"
"-t texinfo |"
makeinfo "--force --no-split -o" out

View File

@ -1,3 +0,0 @@
function Note(nt)
return pandoc.Str("")
end