In most cases views are initialized as a dictionary by the Document class. But since they inherit from Element, they also can be used as placable elements.
(**kwargs)
| 111 | return Page(**kwargs) |
| 112 | |
| 113 | def newTemplate(**kwargs): |
| 114 | """In most cases views are initialized as a dictionary by the Document |
| 115 | class. But since they inherit from Element, they also can be used as |
| 116 | placable elements.""" |
| 117 | return Template(**kwargs) |
| 118 | |
| 119 | def newPlacer(**kwargs): |
| 120 | """Placer occupying a space on Page or Template. Is not visible exported |