github markdown - cressie176/Load64 GitHub Wiki

GitHub Markdown Standards

Headings

  • Start at level 2 (##). The wiki engine renders the page filename as a level 1 heading automatically.
  • Do not include the page title as a heading in the document.
  • Add a blank line before and after every heading.
  • Use ATX style (##) not setext style (underlines).

Tables

  • Align columns so that | characters line up vertically across all rows.
  • Right pad the widest cell in each column with a single space.
  • Right pad the other cell content with spaces to reach the column width.
  • Left pad content cells with exactly one space.
  • Separator rows use - only, no spaces: `|------------|---------|
  • Pad separator cells with - to reach the column width.

Example:

| Name       | Type    | Description        |
|------------|---------|--------------------|
| id         | integer | Unique identifier  |
| created_at | date    | Creation timestamp |

Code Blocks

  • Always use fenced code blocks (triple backticks), never indented blocks.
  • Always specify a language identifier.

Links

  • Use reference-style links for any URL that appears more than once.
  • GitHub Wiki's ignore sub-folders so a file in shared/some-screen.md should be linked to Some screen

Lists

  • Use - as the list marker, not * or +.

Formatting

  • Do not hard wrap prose. Let lines run to their natural length.
  • Do not use horizontal rules (---).
  • No trailing whitespace on any line.
⚠️ **GitHub.com Fallback** ⚠️