Embed Blocks¶
Embed blocks integrate external web content directly into your Notion pages.
Syntax¶
Supported Content¶
Web Pages¶
[embed](https://github.com/user/repo)
[embed](https://codepen.io/user/pen/abc123)
[embed](https://figma.com/file/design-id)
Interactive Tools¶
[embed](https://replit.com/@user/project)
[embed](https://codesandbox.io/s/example)
[embed](https://observable.com/@user/notebook)
Documentation¶
[embed](https://api-docs.example.com "API Documentation")
[embed](https://status.example.com "Service Status")
Programmatic Usage¶
from notionary import MarkdownBuilder
builder = (MarkdownBuilder()
.h1("Project Resources")
.embed("https://github.com/user/repo", "Project Repository")
.embed("https://codepen.io/user/pen/abc123", "Live Demo")
.embed("https://figma.com/file/design-id", "Design Prototype")
)
print(builder.build())