Coverage for pyWebLayout/abstract/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.11.2, created at 2025-11-12 12:02 +0000
« prev ^ index » next coverage.py v7.11.2, created at 2025-11-12 12:02 +0000
1"""
2Abstract layer for the pyWebLayout library.
4This package contains abstract representations of document elements that are
5independent of rendering specifics.
6"""
8from .inline import Word, FormattedSpan
9from .block import Paragraph, Heading, Image, HeadingLevel
10from .document import Document
11from .functional import LinkType
13__all__ = [
14 'Word',
15 'FormattedSpan',
16 'Paragraph',
17 'Heading',
18 'Image',
19 'HeadingLevel',
20 'Document',
21 'LinkType',
22]