the_basics
π Markdown Writing Guide for The White Archive Wiki
Welcome to the Markdown Writing Guide for The White Archive Wiki! This guide will help you write clean, well-organized pages in Markdown, making it easy for users to read and navigate content.
Editors note: I'm not this into firearms I swear, I think the AI was just uncomfortable saying politically incorrect things. So calm it down glowies.
β Quick Markdown Reference
Feature | Markdown Syntax |
---|---|
Header 1 | # Header 1 |
Bullet List | - Item |
Numbered List | 1. Item |
Internal Link | [/path/to/page] |
External Link | [Text](URL) |
Image |  |
Blockquote | > Quote |
Table | | Column | Column | |
Code Block | ```bash |
Task List | - [ ] Task |
Bold | **Bold** |
Italic | _Italic_ |
ποΈ Markdown Basics for Wiki Pages
Markdown is a lightweight language used to convert plain text into structured HTML. Itβs simple to learn and helps ensure consistency across all Wiki pages.
π€ 1. Headers (Titles and Subtitles)
Headers are used to organize content into sections and subsections. The more # symbols you use, the smaller the header.
Markdown Syntax | Rendered Output |
---|---|
# Title (Header 1) | π’ Title (Header 1) |
## Subtitle (Header 2) | π’ Subtitle (Header 2) |
### Section (Header 3) | π’ Section (Header 3) |
Example:
## Early Developments
### Innovations in the 20th Century
π 2. Lists (Bullet Points and Numbered Lists)
Use lists to organize ideas or break down content into digestible points.
πΉ Bullet Points
Use - or * to create bullet points.
- Second Bullet Point
- Sub-bullet Point
Output:
- First Bullet Point
- Second Bullet Point
- Sub-bullet Point
π’ Numbered Lists
To create ordered lists, simply use numbers followed by a period.
2. Second item
1. Sub-item
Output:
- First item
- Second item
- Sub-item
π 3. Links (Internal and External)
Use the following format to link to other pages within the wiki. Make sure to include the / at the start of the page path.
Note in the example above a couple things. If the text you wrap in brackets matches a page name it will automatically fill out the rest once you put in the: (/
The page title wrapped in brackets can be anything you want, it doesn't have to match the page name or path. For Example:
Will still output a link to the page black crime, but the link itself will display what you wrap in brackets.
The path IS case sensitive, and must begin with / for you to use only the page directory. If you dont put the / you would have to include a full link.
Outputs full link example
π External Links (Websites)
For external links, use the standard Markdown format:
πΌ 4. Images
Embedding Images
Embed images in your pages using markdown
For clickable images that open larger versions in a new page:
<a href="/imagename.jpg">
<img src="/imagenamethumb.jpg" alt="Image 1">
</a>
renders as

when you replace the imagename with the uploaded file name. Note for this to work you must upload 2 images, one for the thumbnail one for the bigger image.
This way is easier to remember but you can do either in markdown. [](https://www.thewhitearchive.org/categories.jpg))
This renders as
If you're having trouble with it showing up, the important part is the ] then just put the larger image next to it (fulllinkagain)
To ensure images meet quality and usability standards, test resizing and clarity before uploading. Suggested tools include:
- ReduceImages for single-image resizing.
- image magick for batch images. I've even put together scripts that you can save which will take all the images from one folder, resize and rename them, and output them in 2 separate folders
For Wiki.js, upload images to the Assets Manager and use their paths directly.
π¬ 5. Blockquotes
Blockquotes are used to highlight important information, quotes, or warnings.
Output:
This is a note or warning.
π 6. Tables
Tables are helpful for organizing facts, events, or comparisons.
|---------|--------------------|-------------|
| 1791 | Second Amendment | USA |
| 1836 | Colt Revolver Invented | USA |
| 1947 | AK-47 Introduced | USSR |
Output:
Year | Event | Country |
---|---|---|
1791 | Second Amendment | USA |
1836 | Colt Revolver Invented | USA |
1947 | AK-47 Introduced | USSR |
𧱠7. Code Blocks
Code blocks are useful for commands, scripts, or technical information.
Inline Code:
Use backticks ` for inline code.
Output:
The command ls -la lists all files in a directory.
Code Blocks:
Use triple backticks (```) to create a code block.
docker ps -a
See the page on coding
π 9. Task Lists
Task lists help track progress on tasks or projects.
- [x] Add images to the timeline
- [ ] Link related Wiki pages
Output:
- [ ] Research historical firearm development
- [x] Add images to the timeline
- [ ] Link related Wiki pages
π¨ 10. Formatting Text (Bold, Italic, Highlight)
Syntax | Output |
---|---|
**Bold** | Bold |
_Italic_ | Italic |
==Highlight== | ==Highlight== |
~~Strikethrough~~ |
𧩠11. Embedding Notes (For Internal Links)
To embed the content of another Wiki page, use:
π§ͺ Example Page Structure
Here's an example of a complete page using the elements we've covered:
## Overview
The development of firearms has shaped human history. This page covers key events and innovations.
## Early Developments
The earliest firearms date back to the 9th century.
### Innovations in the 20th Century
- 1903: First semi-automatic pistol.
- 1947: Introduction of the AK-47.
## Notable Firearms
| **Name** | **Year Introduced** | **Country** |
|-------------|---------------------|-------------|
| Colt Revolver | 1836 | USA |
| AK-47 | 1947 | USSR |
Related Pages
π― Next Steps for Contributors:
- Start writing your pages using this guide.
- Link related pages for better navigation.
- Use images and tables to enhance your content.
- Tag your pages for better searchability.
This guide will ensure your pages are consistently formatted and easy to read.