Example Posts
exampleposts.bsky.social
Example Posts
@exampleposts.bsky.social
Account for testing post rendering within your custom AT Protocol apps. Every case should be covered.

Cases: text posts (plain text, mentions, hashtags, links), media posts (1 - 4 photos, video), embed posts (link preview, repost, quote repost), pinned
Pinned
This is a pinned post
Quote repost with 4 photos and 4 embedded photos
August 23, 2025 at 1:01 PM
Quote repost with embedded video
Video rendering test - autoplay, controls, looping, thumbnails vary by client.
August 23, 2025 at 12:57 PM
Quoting a quote repost, quoteception... How would you render this?
Quoting this great post about #API development. How does your app display nested content?
Complex post with @exampleposts.bsky.social discussing #API testing at github.com/bluesky-social - how does your app handle this combo?
August 23, 2025 at 12:44 PM
This
is
a
longer
post
designed
to
test
line
breaks.
It
should
help
developers
see
how
their
apps
handle
posts
that
approach
or
exceed
typical
length
limits.
Does
your
app
truncate
gracefully?

How are line breaks preserved?
August 23, 2025 at 8:00 AM
This is a pinned post
August 23, 2025 at 4:17 AM
```
Very long code block that tests how clients handle code formatting with extended content that might wrap or require horizontal scrolling in the interface.

function longFunction() {
const veryLongVariableName = "testing horizontal scroll";
return veryLongVariableName.repeat(10);
}
```
August 23, 2025 at 4:17 AM
Testing conflicts: #hashtag vs # header, @mention vs @ symbol, *emphasis* vs asterisks
August 23, 2025 at 4:16 AM
Testing edge cases:
**bold text with `code inside`**
*italic with ~~strikethrough~~ inside*
`code with **attempted bold** inside`
August 23, 2025 at 4:15 AM
Unclosed **bold formatting
Mismatched *italic formatting**
Invalid `code formatting

How does your parser handle malformed markdown?
August 23, 2025 at 4:15 AM
Testing escaped markdown: \*not bold\* \`not code\` \#not header - do backslashes prevent formatting?
August 23, 2025 at 4:15 AM
**Bold** post with *italics* and `code` plus ~~strikethrough~~ and [a link](bsky.app) - kitchen sink test!
August 23, 2025 at 4:14 AM
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Data A | Data B | Data C |

Table rendering test - most clients won't support this.
August 23, 2025 at 4:14 AM
![Alt text](images.unsplash.com/photo-174555...) - does your client handle markdown image syntax?
August 23, 2025 at 4:14 AM
[Link with text](bsky.app) and [another link](github.com/bluesky-social) - do these render as clickable links?
August 23, 2025 at 4:13 AM
Above the line
---
Below the line

Alternative syntax:
***
Does this create a visual separator?
August 23, 2025 at 4:13 AM
> This is a blockquote test
> Does your client indent this text?
>
> Multiple paragraph blockquote test.
August 23, 2025 at 4:13 AM
Unordered list test:
- Item one
- Item two
- Nested item
- Item three

Ordered list test:
1. First item
2. Second item
3. Third item
August 23, 2025 at 4:13 AM
# H1 Header Test
## H2 Header Test
### H3 Header Test
Do these render as headers or plain text with symbols?
August 23, 2025 at 4:13 AM
Testing syntax highlighting:
```javascript
const test = () => {
return "syntax highlighting test";
};
```
August 23, 2025 at 4:12 AM
Testing code blocks:
```
function hello() {
console.log("Does your app render this as a code block?");
}
```
August 23, 2025 at 4:12 AM
Testing `inline code` formatting and multiple `code snippets` in one post. Monospace rendering test.
August 23, 2025 at 4:12 AM
Testing ~~strikethrough text~~ - does your client support this markdown feature?
August 23, 2025 at 4:12 AM
Testing ***bold and italic*** together, plus **bold with *italic* inside** and *italic with **bold** inside*.
August 23, 2025 at 4:12 AM
Testing *italic text* and _alternative italic_ syntax. How does your app handle emphasis formatting?
August 23, 2025 at 4:12 AM