logseq_create_page
Create new Logseq pages with customizable properties, tags, and formats. Automate journal page creation with date formatting and initial blocks for efficient knowledge management.
Instructions
Create a new page in Logseq with optional properties. Features: - Journal page creation with date formatting - Custom page properties (tags, status, etc.) - Format selection (Markdown/Org-mode) - Automatic first block creation Perfect for template-based page creation and knowledge management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_first_block | No | Create initial block | |
format | No | Page format | markdown |
journal | No | Journal page flag | |
page_name | Yes | Name of the page to create | |
properties | No | Page properties |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for creating a new page in Logseq.",
"properties": {
"create_first_block": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": true,
"description": "Create initial block",
"title": "Create First Block"
},
"format": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "markdown",
"description": "Page format",
"title": "Format"
},
"journal": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"description": "Journal page flag",
"title": "Journal"
},
"page_name": {
"description": "Name of the page to create",
"title": "Page Name",
"type": "string"
},
"properties": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Page properties",
"title": "Properties"
}
},
"required": [
"page_name"
],
"title": "CreatePageParams",
"type": "object"
}