Appearance
Posts
Posts are updates and notes you can write inside a hoard or community. They support Markdown formatting, allowing you to create rich, expressive content with headings, lists, links, code blocks, and more.
Creating a Post
- Navigate to a hoard or community page.
- Open the Posts tab.
- Click New Post.
- Enter a title and write your content using the Markdown editor.
- Choose a visibility level (hoard posts only):
- Public: anyone can view it
- Friends: only your friends can see it
- Private: only you can see it
- Optionally attach images.
- Click Post.
The Markdown Editor
The post editor includes a formatting toolbar and a live preview so you can see exactly how your post will look before publishing.
Toolbar
The toolbar provides quick-access buttons for common formatting:
| Button | What it does | Markdown syntax |
|---|---|---|
| Bold | Makes text bold | **text** |
| Italic | Makes text italic | *text* |
| Heading | Inserts a heading | ## text |
| Link | Inserts a hyperlink | [text](url) |
| Ordered List | Starts a numbered list | 1. item |
| Unordered List | Starts a bullet list | - item |
| Code Block | Inserts a code fence | ```code``` |
You can also select text and then click a toolbar button to wrap the selection with the appropriate syntax.
Preview Mode
Click the Preview button to switch from the text editor to a rendered preview. The preview updates in real time as you type. Switch back to Write mode to continue editing.
Supported Markdown
Posts support the following Markdown elements:
| Element | Syntax | Example |
|---|---|---|
| Headings | # H1 through ###### H6 | Section titles |
| Bold | **bold** | bold |
| Italic | *italic* | italic |
| Strikethrough | ~~deleted~~ | |
| Links | [text](url) | Clickable hyperlinks |
| Images |  | Embedded images |
| Ordered lists | 1. item | Numbered lists |
| Unordered lists | - item | Bullet lists |
| Inline code | `code` | code |
| Code blocks | ```lang | Multi-line code with syntax highlighting |
| Blockquotes | > quote | Indented quotations |
| Horizontal rules | --- | Visual dividers |
| Tables | ` | col |
Markdown in Comments
Comments on posts also support Markdown, with a few restrictions:
- Headings are not rendered, so heading syntax displays as plain text
- Images are not rendered in comments
- All other inline formatting (bold, italic, code, links, strikethrough, lists) works the same as in posts
Content Limits
Post content can be up to 10,000 characters long. The editor displays a character count when you approach the limit.
Plain Text Compatibility
If you write a post without any Markdown syntax, it will display exactly as you typed it, with line breaks and whitespace preserved. Existing posts created before Markdown support was added will continue to display correctly.
Safety & Security
All rendered Markdown is sanitized before display. This means:
- Scripts, iframes, and other potentially dangerous HTML are automatically removed
- Raw HTML typed into posts is escaped and shown as text
- Event handler attributes (like
onclick) are stripped
You don't need to worry about this as a user, since it happens automatically in the background.
TIP
You can write posts using plain text just like before. Markdown formatting is entirely optional.