Image Blocks¶
Image blocks embed visual content from URLs or files. Useful for documentation, tutorials, and diagrams.
Basic Syntax¶
Quick Examples¶
## Dashboard Overview
[image](https://docs.example.com/screenshots/dashboard.png "Main dashboard overview")
## Architecture Diagram
[image](https://docs.example.com/diagrams/architecture.svg "System Architecture")
## Before/After Comparison
### Before
[image](https://updates.example.com/v1/old-ui.png "Old interface")
### After
[image](https://updates.example.com/v2/new-ui.png "New interface")
Programmatic Usage¶
Using MarkdownBuilder¶
from notionary import MarkdownBuilder
builder = (MarkdownBuilder()
.h1("User Interface Guide")
.h2("Main Dashboard")
.paragraph("When you log in, you'll see the main dashboard:")
.image("https://docs.example.com/ui/dashboard.png", "Main dashboard overview")
.h2("Settings Panel")
.paragraph("Access account settings from the top-right menu:")
.image("https://docs.example.com/ui/settings.png", "User settings panel")
)
print(builder.build())