Cases: text posts (plain text, mentions, hashtags, links), media posts (1 - 4 photos, video), embed posts (link preview, repost, quote repost), pinned
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?
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?
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);
}
```
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);
}
```
**bold text with `code inside`**
*italic with ~~strikethrough~~ inside*
`code with **attempted bold** inside`
**bold text with `code inside`**
*italic with ~~strikethrough~~ inside*
`code with **attempted bold** inside`
Mismatched *italic formatting**
Invalid `code formatting
How does your parser handle malformed markdown?
Mismatched *italic formatting**
Invalid `code formatting
How does your parser handle malformed markdown?
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Data A | Data B | Data C |
Table rendering test - most clients won't support this.
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Data A | Data B | Data C |
Table rendering test - most clients won't support this.
---
Below the line
Alternative syntax:
***
Does this create a visual separator?
---
Below the line
Alternative syntax:
***
Does this create a visual separator?
> Does your client indent this text?
>
> Multiple paragraph blockquote test.
> Does your client indent this text?
>
> Multiple paragraph blockquote test.
- Item one
- Item two
- Nested item
- Item three
Ordered list test:
1. First item
2. Second item
3. Third item
- Item one
- Item two
- Nested item
- Item three
Ordered list test:
1. First item
2. Second item
3. Third item
## H2 Header Test
### H3 Header Test
Do these render as headers or plain text with symbols?
## H2 Header Test
### H3 Header Test
Do these render as headers or plain text with symbols?
```javascript
const test = () => {
return "syntax highlighting test";
};
```
```javascript
const test = () => {
return "syntax highlighting test";
};
```
```
function hello() {
console.log("Does your app render this as a code block?");
}
```
```
function hello() {
console.log("Does your app render this as a code block?");
}
```