example of how to make tables in posts for those using other sources .
-
Quick Guide: Adding Tables to Your PostsTables are great for leaderboards, bug reports, rosters, or any info you want organized neatly.
1๏ธโฃ How to Write a Table
Code (what you type)| Name | Platform | Rank | |-------|----------|------| | Paul | Xbox | Gold | | Jamie | PC | Plat |
Result (what it looks like)Name Platform Rank Paul Xbox Gold Jamie PC Plat
2๏ธโฃ Quick Tips
- First row = column titles
- Second row = separator (must have
---) - Every row starts & ends with
| - Use
|between each column
Minimum working table:
| A | B | |---|---| | 1 | 2 |
3๏ธโฃ Styling Ideas
Users canโt change colours per row, but admins can style all tables globally:
- Alternating row colours โ
table tr:nth-child(even) { background-color: #2a2a2a; } - Header styling โ
table th { background-color: #111; color: #00ffcc; } - Hover effect โ
table tr:hover { background-color: #333; }
4๏ธโฃ Blank Template to Copy
| Column 1 | Column 2 | Column 3 | |----------|----------|----------| | | | | | | | |Copy the template, replace with your info, and post!

-
Name Occupation Rank Adrian friend group explainer tuff Enrique idk tuff -
Advanced Guide: Tables in NodeBB PostsTables let you organize information neatly.
You can also include links, emoji โbuttons,โ and plan for styling.
1๏ธโฃ Basic Table
Code| Player | Platform | Rank | |--------|----------|------| | Paul | Xbox | Gold | | Jamie | PC | Plat | | Sam | PS5 | Dia |
ResultPlayer Platform Rank Paul Xbox Gold Jamie PC Plat Sam PS5 Dia
2๏ธโฃ Table with Links
Code| Item | Link | |------------|------------------------------| | Game Guide | [View Guide](https://example.com) | | Patch Notes| [See Notes](https://example.com) |
ResultItem Link Game Guide View Guide Patch Notes See Notes
3๏ธโฃ โButton-Likeโ Links Using Emojis
You can make links look like buttons inside table cells:
Code| Action | Link | |-------------|------------------------------------| | ๐ฉ Start | [Go](https://example.com/start) | | ๐ฅ Stop | [Go](https://example.com/stop) | | ๐ฆ Info | [More](https://example.com/info) |
ResultAction Link ๐ฉ Start Go ๐ฅ Stop Go ๐ฆ Info More
๏ธ These are visual โbuttonsโ only. You cannot run scripts or create interactive form buttons inside posts.
4๏ธโฃ Blank Advanced Template
Copy and fill in your own data:
| Column 1 | Column 2 | Column 3 | |---------------|----------------|----------------| | | | | | -
further examples
-
Advanced Tables Guide for PostsYou can make your tables more than just rows and columns!
Hereโs how to create tables with links, emojis, checkboxes, inline code, and images.
1๏ธโฃ Full Example Table
Code (Copy This)| Player | Status | Action | Notes | Avatar | |-----------|------------|-------------------------------|----------------|------------------| | Paul | ๐ข Online | ๐ฉ [Join](https://example.com) | **Top scorer** |  | | Jamie | ๐ด Offline | ๐ฅ [Leave](https://example.com)| *Needs help* |  | | Sam | ๐ก Busy | ๐ฆ [Info](https://example.com) | `Testing` |  |
Rendered ResultPlayer Status Action Notes Avatar Paul ๐ข Online ๐ฉ Join Top scorer Jamie
Offline๐ฅ Leave Needs help Sam ๐ก Busy ๐ฆ Info Testing
2๏ธโฃ Features Used
Links inside cells
Emojis for status and button-like visuals
Bold/italic/inline code for emphasis
Inline images for avatars/icons
Checklists or other symbols (Markdown compatible)
Example for tasks:
| Task | Done | |----------------|------| | Setup PC | - [x] | | Test Game | - [ ] |
3๏ธโฃ Styling Ideas (Admin Only)
Users cannot change row colours individually, but global CSS can make tables look amazing:
/* Alternating rows */ table tr:nth-child(even) { background-color: #2a2a2a; } /* Header styling */ table th { background-color: #111; color: #0f0; } /* Hover effect for rows */ table tr:hover { background-color: #333; }
4๏ธโฃ Quick Blank Template
| Column 1 | Column 2 | Column 3 | Column 4 | |---------------|----------------|----------------|-------------| | | | | | | | | | | | | | | |Copy this template and fill it with your info.
Combine links, emojis, code, and images to make your posts stand out!
Tip: Keep tables readable, use consistent headers, and donโt overcrowd cells. -
i might put this in my bio
-
i made a simple table creator for you guys.. https://wiiubru.com/table.html hope it helps
simply copy and paste your markdown to a post.