⚠️ THIS IS A TEST ISSUE — DO NOT WORK ON IT.
It exists only to exercise the GrantFox platform (markdown rendering). It is not part of any campaign, carries no reward, and will be closed once testing is done. Please ignore it.
PURPOSE
Verify that GrantFox renders rich markdown bodies the same way GitHub does — the real epics rely heavily on headings, lists, code, and tables.
WHAT IS BEING TESTED
Headings
Levels 2 and 3 render distinctly (this line is under an ###).
Lists
- Bullet item
- Bullet item with
inline code
- Ordered item
- Ordered item
Code block
export function parsePagination(page?: string, limit?: string) {
const parsedPage = Math.max(1, Number(page) || 1);
return { page: parsedPage };
}
Table
| Field |
Type |
Notes |
data |
T[] |
current page |
total |
number |
full count |
page |
number |
1-indexed |
Other
Bold, italic, strikethrough, a link, and a task list:
Blockquote with a special character run: áéíóú ñ — “quotes” … ✅
EXPECTED RESULT
Every element above renders correctly in the GrantFox issue view, with no broken formatting or escaped characters.
Test issue — safe to close.
PURPOSE
Verify that GrantFox renders rich markdown bodies the same way GitHub does — the real epics rely heavily on headings, lists, code, and tables.
WHAT IS BEING TESTED
Headings
Levels 2 and 3 render distinctly (this line is under an
###).Lists
inline codeCode block
Table
dataT[]totalnumberpagenumberOther
Bold, italic,
strikethrough, a link, and a task list:EXPECTED RESULT
Every element above renders correctly in the GrantFox issue view, with no broken formatting or escaped characters.
Test issue — safe to close.