File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,12 @@ Each database schema corresponds to a Python module within `src/workflow/`:
8989| Database schema | Python module (` .py ` file) |
9090| Database table | Python class |
9191
92- ![ Schema Design] ( ../95-reference/figures/schema-illustration.png )
93- * Each database schema corresponds to a Python module containing related table definitions.*
92+ ``` {figure} ../95-reference/figures/schema-illustration.png
93+ :width: 600px
94+ :align: center
95+
96+ Each database schema corresponds to a Python module containing related table definitions.
97+ ```
9498
9599Each module defines a ` schema ` object and uses it to declare tables:
96100
@@ -116,8 +120,12 @@ A pipeline forms a **Directed Acyclic Graph (DAG)** where:
116120- ** Nodes** are schema modules
117121- ** Edges** represent dependencies (Python imports and foreign key bundles)
118122
119- ![ Pipeline Design] ( ../95-reference/figures/pipeline-illustration.png )
120- * Schemas form a DAG where edges represent both Python imports and foreign key relationships.*
123+ ``` {figure} ../95-reference/figures/pipeline-illustration.png
124+ :width: 600px
125+ :align: center
126+
127+ Schemas form a DAG where edges represent both Python imports and foreign key relationships.
128+ ```
121129
122130Downstream modules import upstream modules:
123131
You can’t perform that action at this time.
0 commit comments