Skip to content

Commit 50ff79b

Browse files
committed
Fix figure sizes in Pipeline Projects chapter
1 parent ec273dc commit 50ff79b

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

book/30-design/090-pipeline-project.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff 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

9599
Each 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

122130
Downstream modules import upstream modules:
123131

0 commit comments

Comments
 (0)