Markdown for Comments
FUNDOCS comments (Remark42) support Markdown in the comment body. This page replaces the stock Remark42 “markdown help” promo — use it as the SSOT for authors.
Inline
| Style | Syntax | Result |
|---|---|---|
| Bold | **text** or __text__ | text |
| Italic | *text* or _text_ | text |
| Strikethrough | ~~text~~ | |
| Inline code | `code` | code |
| Link | [label](https://example.com) | label |
Blocks
Paragraph — separate with a blank line.
Code fence:
```js
const x = 1;
```Blockquote:
> quoted textLists:
- item one
- item two
1. first
2. secondTips
- Prefer relative wiki links when referencing FUNDOCS:
/dev/docs/wiki/architecture/identity/ - Do not paste secrets, tokens, or production passwords — comments are dev-gated but still durable.
- Edits are allowed for a long window; fix typos inline instead of posting duplicates.