diff options
| author | John MacFarlane <[email protected]> | 2023-01-13 15:20:50 -0800 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-01-13 15:20:50 -0800 |
| commit | 676a6b1f82c0679f91f40dfc9d63f3d27945c698 (patch) | |
| tree | 0eabec157e4ec5e93c744a3ee894c81090eda0cb /pandoc-lua-engine/src | |
| parent | b2d93afddbdca9de55d41967ea68001ed7747f20 (diff) | |
Remove block constructor Null from the code base.
It has been removed from pandoc-types.
Diffstat (limited to 'pandoc-lua-engine/src')
| -rw-r--r-- | pandoc-lua-engine/src/Text/Pandoc/Lua/Writer/Classic.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pandoc-lua-engine/src/Text/Pandoc/Lua/Writer/Classic.hs b/pandoc-lua-engine/src/Text/Pandoc/Lua/Writer/Classic.hs index 19f5ad154..dc684b4e9 100644 --- a/pandoc-lua-engine/src/Text/Pandoc/Lua/Writer/Classic.hs +++ b/pandoc-lua-engine/src/Text/Pandoc/Lua/Writer/Classic.hs @@ -131,8 +131,6 @@ blockToCustom :: forall e. LuaError e => Block -- ^ Block element -> LuaE e String -blockToCustom Null = return "" - blockToCustom (Plain inlines) = invoke "Plain" (Stringify inlines) blockToCustom (Para [Image attr txt (src,tit)]) = |
