Reorganize files

This commit is contained in:
Joscha 2019-05-11 22:13:39 +00:00
parent 130da242cc
commit 7c89ada5f0
8 changed files with 5 additions and 19 deletions

View file

@ -1,4 +1,7 @@
__all__ = ["RenderException"] __all__ = ["ElementException", "TreeException"]
class RenderException(Exception): class ElementException(Exception):
pass
class TreeException(Exception):
pass pass

View file

@ -1,10 +0,0 @@
General/generic features:
Text with attributes attached to the characters
Can be...
- split
- joined
- converted to raw text or other formats
The attributes of certain characters can be read

View file

@ -1,7 +0,0 @@
__all__ = ["ElementException", "TreeException"]
class ElementException(Exception):
pass
class TreeException(Exception):
pass