The Manual
Your field guide to Standard Garden.
::obsidian
The recommended way to publish to Standard Garden is through Obsidian, the markdown note-taking app.
Setup
- Install the Standard Garden plugin from Obsidian Community Plugins
- Open Settings → Standard Garden
-
Enter your API key (get it from
::accountin the Command Palette) - Set your garden name (e.g.,
your-name)
Publishing
Add frontmatter to any note you want to publish:
---
published: true
pinned: false
private: false
---
# Your Note Title
Your content here... The plugin will automatically sync your notes to Standard Garden.
Frontmatter Options
-
published: true- Make note visible on your garden -
pinned: true- Pin to top of your garden -
private: true- Hide from public feed (Estate only) theme: dark- Override default theme
The simplest way to publish is via email. Perfect for quick thoughts or when you're away from your computer.
Your Email Address
Every garden has a unique email address:
your-name@standard.garden How It Works
- Send an email to your garden address
- Subject line becomes the note title
- Email body becomes the content
- Note is published immediately
Advanced Options
Add tags in the subject line:
Subject: My Note Title #recipe #cooking Pin a note by adding [pin]:
Subject: [pin] Important Announcement ::syntax
Standard Garden supports extended Markdown syntax for rich content.
Basic Markdown
# Heading 1
## Heading 2
### Heading 3
**Bold text**
*Italic text*
- List item
- Another item
1. Numbered list
2. Second item
[Link text](https://example.com) Extended Syntax
Quotes
::quote
This is a beautiful quote.
— Author Name
:: Galleries
::gallery


:: Code Blocks
```javascript
function hello() {
console.log('Hello, Standard Garden!');
}
``` Callouts
> [!NOTE]
> This is a note callout
> [!WARNING]
> This is a warning ::api
For advanced users, Standard Garden provides a REST API for programmatic access.
Authentication
Get your API key from the Command Palette (Cmd+K → ::account → ::key).
Include it in the Authorization header:
Authorization: Bearer your-api-key-here Endpoints
Create Note
POST /notes/create
Content-Type: application/json
{
"title": "My Note",
"content": "# Hello\\n\\nThis is my note.",
"published": true,
"pinned": false
} List Notes
GET /notes/list Delete Note
DELETE /notes/:id Full API documentation: docs.standard.garden/api