diff --git a/cheuph/render/__init__.py b/cheuph/__init__.py similarity index 100% rename from cheuph/render/__init__.py rename to cheuph/__init__.py diff --git a/cheuph/render/element.py b/cheuph/element.py similarity index 100% rename from cheuph/render/element.py rename to cheuph/element.py diff --git a/cheuph/exceptions.py b/cheuph/exceptions.py index 31a0c9e..76c4edc 100644 --- a/cheuph/exceptions.py +++ b/cheuph/exceptions.py @@ -1,4 +1,7 @@ -__all__ = ["RenderException"] +__all__ = ["ElementException", "TreeException"] -class RenderException(Exception): +class ElementException(Exception): + pass + +class TreeException(Exception): pass diff --git a/cheuph/render/markup.py b/cheuph/markup.py similarity index 100% rename from cheuph/render/markup.py rename to cheuph/markup.py diff --git a/cheuph/plan.txt b/cheuph/plan.txt deleted file mode 100644 index 398d341..0000000 --- a/cheuph/plan.txt +++ /dev/null @@ -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 diff --git a/cheuph/render/exceptions.py b/cheuph/render/exceptions.py deleted file mode 100644 index 76c4edc..0000000 --- a/cheuph/render/exceptions.py +++ /dev/null @@ -1,7 +0,0 @@ -__all__ = ["ElementException", "TreeException"] - -class ElementException(Exception): - pass - -class TreeException(Exception): - pass diff --git a/cheuph/render/tree_display.py b/cheuph/tree_display.py similarity index 100% rename from cheuph/render/tree_display.py rename to cheuph/tree_display.py diff --git a/cheuph/render/tree_list.py b/cheuph/tree_list.py similarity index 100% rename from cheuph/render/tree_list.py rename to cheuph/tree_list.py