create_page
Creates a new page in Logseq, automatically parsing markdown into a block hierarchy with headings, lists, code blocks, and YAML frontmatter as page properties.
Instructions
Create a new page in Logseq with properly structured blocks.
Markdown content is automatically parsed into Logseq's block hierarchy:
Headings (# ## ###) create nested sections
Lists (- or 1.) become proper block trees
Code blocks are preserved as single blocks
YAML frontmatter (---) becomes page properties
Example content:
---
tags: [project, active]
priority: high
---
# Project Title
Introduction paragraph.
## Tasks
- Task 1
- Subtask A
- Task 2Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Title of the new page | |
| content | No | Markdown content to parse into blocks (optional) | |
| properties | No | Page properties (merged with frontmatter if both provided) |