Developer Template GFM Verified4 Columns · 6 Sample Rows

Hardware & System Prerequisites Markdown Table Template

Hardware, operating system, runtime, and network specifications required to run software in dev vs production.

Primary Use Case: Installation manuals, self-hosted Docker guides, enterprise deployment docs.

Interactive Template Customizer

Edit cells, add rows, or sort — changes update the markdown live
Quick Start:
#
1
lscpu or sysctl -n machdep.cpu
2
free -h
3
df -h /var/lib
4
uname -mrs
5
Node.js >= 18.17.0
Node.js 22.x LTS
node --version
6
curl -I https://api.domain.com
Flavor:
Style:
| Component        | Minimum Specification                      | Recommended Production Spec          | Verification Command               |
| :--------------- | :----------------------------------------- | :----------------------------------- | :--------------------------------- |
| CPU Processor    | 1 vCPU (x86_64 / ARM64)                    | 4+ vCPUs with AVX2 support           | `lscpu` or `sysctl -n machdep.cpu` |
| System RAM       | 1 GB available memory                      | 8 GB+ ECC DDR4 RAM                   | `free -h`                          |
| Disk Storage     | 500 MB free SSD space                      | 50 GB NVMe SSD (fast I/O)            | `df -h /var/lib`                   |
| Operating System | Linux (kernel 5.4+), macOS 12+, Windows 11 | Ubuntu 22.04 LTS or Debian 12        | `uname -mrs`                       |
| Node.js Runtime  | Node.js `>= 18.17.0`                       | Node.js `22.x LTS`                   | `node --version`                   |
| Network Port     | Port 80 / 443 outbound                     | Static IPv4 / IPv6 + TLS certificate | `curl -I https://api.domain.com`   |
Convert document (PDF, Word, PPTX) → MDConverter
Rendered Preview
GitHub Flavored Markdown style
ComponentMinimum SpecificationRecommended Production SpecVerification Command
CPU Processor1 vCPU (x86_64 / ARM64)4+ vCPUs with AVX2 supportlscpu or sysctl -n machdep.cpu
System RAM1 GB available memory8 GB+ ECC DDR4 RAMfree -h
Disk Storage500 MB free SSD space50 GB NVMe SSD (fast I/O)df -h /var/lib
Operating SystemLinux (kernel 5.4+), macOS 12+, Windows 11Ubuntu 22.04 LTS or Debian 12uname -mrs
Node.js RuntimeNode.js >= 18.17.0Node.js 22.x LTSnode --version
Network PortPort 80 / 443 outboundStatic IPv4 / IPv6 + TLS certificatecurl -I https://api.domain.com

Column Architecture & Alignment Specification

Carefully chosen column alignments ensure optimal visual scannability across desktop and mobile screens:

Column HeaderAlignmentDelimiter SyntaxDesign Rationale
Componentleft:---Standard left-aligned readable text & descriptions
Minimum Specificationleft:---Standard left-aligned readable text & descriptions
Recommended Production Specleft:---Standard left-aligned readable text & descriptions
Verification Commandleft:---Standard left-aligned readable text & descriptions

Pro Tips for Hardware & System Prerequisites

  • Separate Minimum vs Recommended columns for realistic customer guidance.
  • Specify disk space requirements including database growth forecasts.
  • List supported OS kernels or distributions explicitly.

How to Deploy This Table Across Platforms

GitHub README & PRs

Paste raw Markdown into README.md. Leave one blank newline above and below for GFM compliance.

Obsidian PKM Vaults

Paste directly into Live Preview mode. Use wikilinks ([[Note]]) inside cells for bidirectional linking.

Notion Workspaces

Press Enter to make a fresh empty line block, then paste. Notion auto-transforms it into a native Simple Table block.

Docusaurus & VitePress

Standard GFM tables work out of the box in modern MDX engines. You can style them via custom CSS selectors.

Raw GFM Code

| Component        | Minimum Specification                      | Recommended Production Spec          | Verification Command               |
| :--------------- | :----------------------------------------- | :----------------------------------- | :--------------------------------- |
| CPU Processor    | 1 vCPU (x86_64 / ARM64)                    | 4+ vCPUs with AVX2 support           | `lscpu` or `sysctl -n machdep.cpu` |
| System RAM       | 1 GB available memory                      | 8 GB+ ECC DDR4 RAM                   | `free -h`                          |
| Disk Storage     | 500 MB free SSD space                      | 50 GB NVMe SSD (fast I/O)            | `df -h /var/lib`                   |
| Operating System | Linux (kernel 5.4+), macOS 12+, Windows 11 | Ubuntu 22.04 LTS or Debian 12        | `uname -mrs`                       |
| Node.js Runtime  | Node.js `>= 18.17.0`                       | Node.js `22.x LTS`                   | `node --version`                   |
| Network Port     | Port 80 / 443 outbound                     | Static IPv4 / IPv6 + TLS certificate | `curl -I https://api.domain.com`   |

Standard padded style with boundary pipes matching GitHub GFM parser specifications.

Platform Support

GitHub (GFM)✓ 100% Native
GitLab (GLFM)✓ 100% Native
Obsidian Vault✓ 100% Native
Notion Workspace✓ Paste as Table
Slack & DiscordIn Code Block

Syntax Formatting Rules

  • Pipe Escaping: Use \| for text with pipe symbols.
  • Multi-line Cells: Use <br> for line breaks.
  • Monospace Text: Wrap variables or code in backticks (`key`).
  • Empty Values: Use instead of leaving cells empty.
Template Knowledge Base

Frequently Asked Questions About Hardware & System Prerequisites

How should I format parameters, flags, or keys in this Hardware & System Prerequisites table?

Wrap variable names in the "Component" column in backticks (e.g., `CPU Processor`). This enforces monospace rendering, prevents underscores from italicizing surrounding text, and improves readability across GitHub and developer documentation sites.

Where in my repository or project documentation should I place this Hardware & System Prerequisites table?

This template is specifically designed for installation manuals, self-hosted docker guides, enterprise deployment docs. Place it inside your project's README.md, technical wiki, or developer portal. Always leave at least one blank newline before and after the table to ensure the GFM parser detects it properly.

Why is the "Component" column styled with left alignment?

The "Component" column functions as the primary key of this table. Setting it to left alignment establishes an anchor along the left reading margin, making it effortless for developers to scan down the list.

How do I add line breaks inside a single cell of this Hardware & System Prerequisites table?

Standard Markdown table rows cannot contain literal carriage returns. To create a multi-line list inside a cell, insert HTML <br> tags (e.g. "Item 1<br>Item 2<br>Item 3"). This keeps the entire entry in a single clean row without breaking column alignments.

How do I handle optional or missing values in Hardware & System Prerequisites?

Never leave table cells completely empty, as some strict Markdown parsers may collapse empty pipes. Instead, insert an em-dash ("—"), "N/A", or "None" to explicitly indicate that a value is not applicable.

Can I export this Hardware & System Prerequisites table into CSV, Excel, or HTML?

Yes. In the interactive toolkit above, you can edit your data and use our integrated export tools to convert this table directly into CSV, JSON, HTML <table>, or LaTeX with a single click.