Project Template GFM Verified6 Columns ยท 5 Sample Rows

Bug & Defect Triage Severity Log Markdown Table Template

Track software defects, reproduction steps, severity levels, target components, found versions, and resolution status.

Primary Use Case: QA release sign-off reports, customer issue triage sheets, bug scrub meetings.

Interactive Template Customizer

Edit cells, add rows, or sort โ€” changes update the markdown live
Quick Start:
#
1
BUG-204
Blocker
v2.0.1
2
BUG-205
v2.0.0
3
BUG-206
v2.1.0
4
BUG-207
LaTeX exporter fails on unescaped math % comments in cells
v1.9.8
5
BUG-208
v2.1.0
Flavor:
Style:
| Defect ID | Summary / Reproduction Case                                         |  Severity   | Component    | Observed Build |    Status     |
| :-------: | :------------------------------------------------------------------ | :---------: | :----------- | :------------: | :-----------: |
| `BUG-204` | Table delimiter row with 2 hyphens parses as text in strict GFM     | **Blocker** | GFM Parser   |    `v2.0.1`    |     Fixed     |
| `BUG-205` | Mobile Safari virtual keyboard zooms input on cell tap              |    Major    | Grid Editor  |    `v2.0.0`    | Investigating |
| `BUG-206` | Dark mode border contrast low on OLED displays in table header      |    Minor    | UI Theme     |    `v2.1.0`    |     Fixed     |
| `BUG-207` | LaTeX exporter fails on unescaped math `%` comments in cells        |    Major    | LaTeX Engine |    `v1.9.8`    |     Fixed     |
| `BUG-208` | Copy button clipboard permission denied alert not firing on Firefox |    Minor    | Toolkit UI   |    `v2.1.0`    |  In Progress  |
Convert document (PDF, Word, PPTX) โ†’ MDConverter
Rendered Preview
GitHub Flavored Markdown style
Defect IDSummary / Reproduction CaseSeverityComponentObserved BuildStatus
BUG-204Table delimiter row with 2 hyphens parses as text in strict GFMBlockerGFM Parserv2.0.1Fixed
BUG-205Mobile Safari virtual keyboard zooms input on cell tapMajorGrid Editorv2.0.0Investigating
BUG-206Dark mode border contrast low on OLED displays in table headerMinorUI Themev2.1.0Fixed
BUG-207LaTeX exporter fails on unescaped math % comments in cellsMajorLaTeX Enginev1.9.8Fixed
BUG-208Copy button clipboard permission denied alert not firing on FirefoxMinorToolkit UIv2.1.0In Progress

Column Architecture & Alignment Specification

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

Column HeaderAlignmentDelimiter SyntaxDesign Rationale
Defect IDcenter:---:Centers compact status symbols, flags, or tags
Summary / Reproduction Caseleft:---Standard left-aligned readable text & descriptions
Severitycenter:---:Centers compact status symbols, flags, or tags
Componentleft:---Standard left-aligned readable text & descriptions
Observed Buildcenter:---:Centers compact status symbols, flags, or tags
Statuscenter:---:Centers compact status symbols, flags, or tags

Pro Tips for Bug & Defect Triage Severity Log

  • Center-align Defect ID, Severity, and Resolution Status.
  • Include the exact software build version where the defect was observed.
  • Bold critical severity bugs (e.g. `**Blocker**`, `**Critical**`).

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

| Defect ID | Summary / Reproduction Case                                         |  Severity   | Component    | Observed Build |    Status     |
| :-------: | :------------------------------------------------------------------ | :---------: | :----------- | :------------: | :-----------: |
| `BUG-204` | Table delimiter row with 2 hyphens parses as text in strict GFM     | **Blocker** | GFM Parser   |    `v2.0.1`    |     Fixed     |
| `BUG-205` | Mobile Safari virtual keyboard zooms input on cell tap              |    Major    | Grid Editor  |    `v2.0.0`    | Investigating |
| `BUG-206` | Dark mode border contrast low on OLED displays in table header      |    Minor    | UI Theme     |    `v2.1.0`    |     Fixed     |
| `BUG-207` | LaTeX exporter fails on unescaped math `%` comments in cells        |    Major    | LaTeX Engine |    `v1.9.8`    |     Fixed     |
| `BUG-208` | Copy button clipboard permission denied alert not firing on Firefox |    Minor    | Toolkit UI   |    `v2.1.0`    |  In Progress  |

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 Bug & Defect Triage Severity Log

How should task statuses, assignees, and deadlines be formatted in Bug & Defect Triage Severity Log?

For team assignees, use GitHub handles ("@username") or initials. For status columns, use standardized emojis ("๐ŸŸข Done", "๐ŸŸก In Progress", "๐Ÿ”ด Blocked") or GitHub task checkboxes ("- [x] Completed") so sprint progress is scannable at a glance.

Where in my repository or project documentation should I place this Bug & Defect Triage Severity Log table?

This template is specifically designed for qa release sign-off reports, customer issue triage sheets, bug scrub meetings. 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 "Defect ID" column styled with center alignment?

The "Defect ID" column functions as the primary key of this table. Setting it to center 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 Bug & Defect Triage Severity Log 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 Bug & Defect Triage Severity Log?

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 Bug & Defect Triage Severity Log 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.