Skip to content

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

  1. Navigate to a hoard or community page.
  2. Open the Posts tab.
  3. Click New Post.
  4. Enter a title and write your content using the Markdown editor.
  5. 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
  6. Optionally attach images.
  7. 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:

ButtonWhat it doesMarkdown syntax
BoldMakes text bold**text**
ItalicMakes text italic*text*
HeadingInserts a heading## text
LinkInserts a hyperlink[text](url)
Ordered ListStarts a numbered list1. item
Unordered ListStarts a bullet list- item
Code BlockInserts 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:

ElementSyntaxExample
Headings# H1 through ###### H6Section titles
Bold**bold**bold
Italic*italic*italic
Strikethrough~~deleted~~deleted
Links[text](url)Clickable hyperlinks
Images![alt](url)Embedded images
Ordered lists1. itemNumbered lists
Unordered lists- itemBullet lists
Inline code`code`code
Code blocks```langMulti-line code with syntax highlighting
Blockquotes> quoteIndented 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.

Hoardly Wiki