13 lines
320 B
Python
13 lines
320 B
Python
|
|
"""
|
||
|
|
Rendering system for Information Spaces.
|
||
|
|
|
||
|
|
This package provides space rendering capabilities:
|
||
|
|
- SpaceRenderer: Abstract renderer interface
|
||
|
|
- MarkdownToHTMLRenderer: HTML output renderer
|
||
|
|
- Theme support and customization
|
||
|
|
- Render caching with invalidation
|
||
|
|
"""
|
||
|
|
|
||
|
|
# Rendering will be implemented in Phase 4
|
||
|
|
__all__ = []
|