Add core structure for ODT class

This commit is contained in:
Veronica K. B. Olsen
2021-01-26 16:25:14 +01:00
parent 751da877ee
commit c9eebafb2d
4 changed files with 93 additions and 1 deletions
+2
View File
@@ -5,6 +5,7 @@ from nw.core.index import NWIndex
from nw.core.project import NWProject
from nw.core.spellcheck import NWSpellCheck, NWSpellEnchant, NWSpellSimple
from nw.core.tohtml import ToHtml
from nw.core.toodt import ToOdt
from nw.core.tools import countWords, numberToRoman, numberToWord
__all__ = [
@@ -18,4 +19,5 @@ __all__ = [
"NWSpellEnchant",
"NWSpellSimple",
"ToHtml",
"ToOdt",
]