initial filter for removing solution of exercices

This commit is contained in:
Julien Fastré 2020-09-20 23:36:27 +02:00
parent e7bb9d8e8a
commit 0737a75e7e
1 changed files with 7 additions and 0 deletions

7
remove-solutions.lua Normal file
View File

@ -0,0 +1,7 @@
function Div(elem)
if (elem.classes:find('solution') == nil)
then
return nil
end
return elem
end