You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/architecture/package-map.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,8 @@ intended.
49
49
|`com.demcha.compose.engine.pagination`| Page-breaking helpers and pagination fallback systems. | Maintain child-first ordering and page-shift propagation rules. |
50
50
|`com.demcha.compose.engine.measurement`| Text measurement contracts and font-backed implementations. | Builders/layout helpers depend on this seam instead of reaching into renderers. |
|`com.demcha.compose.engine.render.pdf`| Low-level PDF backend internals for ECS rendering. | PDFBox state stays here and in child handler/helper packages. |
52
+
|`com.demcha.compose.engine.render.pdf`| Shared PDFBox primitives for the canonical fixed-layout backend: `PdfFont`, `GlyphFallbackLogger`, and the header/footer + watermark renderers under `helpers`. | Add canonical-shared PDF support here; the legacy ECS renderer lives in the deprecated `ecs` sub-package. |
53
+
|`com.demcha.compose.engine.render.pdf.ecs`|**Deprecated.** Legacy `Entity`-based ECS PDF renderer (`PdfRenderingSystemECS` and collaborators, plus the `ecs.handlers` / `ecs.helpers` sub-packages). | Dead renderer kept only for legacy regression tests; do not extend or optimize. |
53
54
|`com.demcha.compose.engine.render.word`| Experimental Word backend internals. | Treat as research until a supported public surface is designed. |
54
55
|`com.demcha.compose.engine.text`| Internal text hot-path utilities shared by layout and render stages. | Keep helpers backend-neutral and avoid public authoring concepts here. |
55
56
|`com.demcha.compose.engine.text.markdown`| Markdown token parsing used by text preparation. | Keep output backend-neutral. |
0 commit comments