Components Gallery
Last updated: July 22, 2025
Components Gallery
This page showcases the various markdown components and formatting options available in FoxWiki. You can use this as a reference when creating your own documentation.
Text Formatting
FoxWiki supports standard markdown text formatting:
- Bold text is created with **Bold text**or__Bold text__
- Italic text is created with *Italic text*or_Italic text_
- Bold and italic is created with ***Bold and italic***
Strikethroughis created with~~Strikethrough~~
Headings
Headings are created with
#
symbols.When using Heading 1 (#) or Heading 2 (##), the content will be automatically split into separate cards
Heading 1 (#)
Heading 2 (##)
Heading 3 (###)
Heading 4 (####)
Heading 5 (#####)
Heading 6 (######)
Lists
Unordered Lists
Unordered lists can be created with
-
, *
, or +
:- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered Lists
Ordered lists are created with numbers:
- First item
- Second item
- Nested item 2.1
- Nested item 2.2
- Third item
Task Lists
Task lists are created with
- [ ]
and - [x]
:- Completed task
- Incomplete task
- Another task
Links
Images
Images are created with

:Blockquotes
Blockquotes look like Cards
They are created with
>
:This is a blockquote
It can span multiple lines
Code
Inline Code
Inline code is created with backticks:
const example = "hello world";
Code Blocks
Code blocks are created with triple backticks and an optional language identifier:
Tables
Tables are created with pipes and dashes:
Header 1 | Header 2 | Header 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Horizontal Rules
Horizontal rules are created with three or more hyphens, asterisks, or underscores:
Footnotes
Alerts - from wiki.js
This is an informational message.
This is a success message.
This is a warning message.
This is a danger message.