summaryrefslogtreecommitdiff
path: root/htmtl/htmtl.py
diff options
context:
space:
mode:
Diffstat (limited to 'htmtl/htmtl.py')
-rw-r--r--htmtl/htmtl.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/htmtl/htmtl.py b/htmtl/htmtl.py
index e5fa4f9..885fe94 100644
--- a/htmtl/htmtl.py
+++ b/htmtl/htmtl.py
@@ -3,8 +3,10 @@ from dompa import Dompa
from .parser import Parser
from .parsers.generic_value import GenericValue
from .parsers.inner_html import InnerHtml
+from .parsers.inner_partial import InnerPartial
from .parsers.inner_text import InnerText
from .parsers.outer_html import OuterHtml
+from .parsers.outer_partial import OuterPartial
from .parsers.outer_text import OuterText
from .modifier import Modifier
from .modifiers.truncate import Truncate
@@ -25,8 +27,10 @@ class Htmtl:
self.__attribute_parsers = [
InnerText,
InnerHtml,
+ InnerPartial,
OuterText,
OuterHtml,
+ OuterPartial,
GenericValue,
]