Developer Template GFM Verified5 Columns · 7 Sample Rows

Conventional Commits & Semantic Releases Markdown Table Template

Conventional Commit specifications mapping commit type prefixes to SemVer release impacts, changelog categories, and example formats.

Primary Use Case: CONTRIBUTING.md instructions, PR templates, commitlint configuration guides.

Interactive Template Customizer

Edit cells, add rows, or sort — changes update the markdown live
Quick Start:
#
1
feat
MINOR
feat(editor): add multi-cursor keyboard shortcuts
2
fix
PATCH
fix(parser): escape literal pipes inside inline code
3
feat! / fix!
MAJOR
feat(api)!: remove deprecated v1 endpoint
4
docs
docs(readme): add docker port configuration table
5
perf
PATCH
perf(engine): optimize AST matrix transposition
6
refactor
refactor(utils): extract delimiter sniffing logic
7
chore
chore(deps): bump next from 15.0 to 15.1
Flavor:
Style:
| Commit Type      | Description / Purpose                                       | SemVer Impact | Changelog Section    | Commit Message Example                                 |
| :--------------- | :---------------------------------------------------------- | :-----------: | :------------------- | :----------------------------------------------------- |
| `feat`           | A brand new user-facing feature or capability               |   **MINOR**   | Features             | `feat(editor): add multi-cursor keyboard shortcuts`    |
| `fix`            | A bugfix resolving an existing issue                        |   **PATCH**   | Bug Fixes            | `fix(parser): escape literal pipes inside inline code` |
| `feat!` / `fix!` | Any change introducing a breaking API modification          |   **MAJOR**   | ⚠️ Breaking Changes | `feat(api)!: remove deprecated v1 endpoint`            |
| `docs`           | Documentation only changes (README, guides, comments)       |     None      | Documentation        | `docs(readme): add docker port configuration table`    |
| `perf`           | Code change improving algorithmic performance or latency    |   **PATCH**   | Performance          | `perf(engine): optimize AST matrix transposition`      |
| `refactor`       | Code restructuring without changing behavior or fixing bugs |     None      | Internal             | `refactor(utils): extract delimiter sniffing logic`    |
| `chore`          | Build process, package updates, or tooling configuration    |     None      | Chores               | `chore(deps): bump next from 15.0 to 15.1`             |
Convert document (PDF, Word, PPTX) → MDConverter
Rendered Preview
GitHub Flavored Markdown style
Commit TypeDescription / PurposeSemVer ImpactChangelog SectionCommit Message Example
featA brand new user-facing feature or capabilityMINORFeaturesfeat(editor): add multi-cursor keyboard shortcuts
fixA bugfix resolving an existing issuePATCHBug Fixesfix(parser): escape literal pipes inside inline code
feat! / fix!Any change introducing a breaking API modificationMAJOR⚠️ Breaking Changesfeat(api)!: remove deprecated v1 endpoint
docsDocumentation only changes (README, guides, comments)NoneDocumentationdocs(readme): add docker port configuration table
perfCode change improving algorithmic performance or latencyPATCHPerformanceperf(engine): optimize AST matrix transposition
refactorCode restructuring without changing behavior or fixing bugsNoneInternalrefactor(utils): extract delimiter sniffing logic
choreBuild process, package updates, or tooling configurationNoneChoreschore(deps): bump next from 15.0 to 15.1

Column Architecture & Alignment Specification

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

Column HeaderAlignmentDelimiter SyntaxDesign Rationale
Commit Typeleft:---Standard left-aligned readable text & descriptions
Description / Purposeleft:---Standard left-aligned readable text & descriptions
SemVer Impactcenter:---:Centers compact status symbols, flags, or tags
Changelog Sectionleft:---Standard left-aligned readable text & descriptions
Commit Message Exampleleft:---Standard left-aligned readable text & descriptions

Pro Tips for Conventional Commits & Semantic Releases

  • Format type prefixes in inline code (`feat:`, `fix:`, `chore:`).
  • Center-align SemVer Impact column (MAJOR, MINOR, PATCH).
  • Bold breaking change indicator (`feat!:`) to highlight major version bumps.

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

| Commit Type      | Description / Purpose                                       | SemVer Impact | Changelog Section    | Commit Message Example                                 |
| :--------------- | :---------------------------------------------------------- | :-----------: | :------------------- | :----------------------------------------------------- |
| `feat`           | A brand new user-facing feature or capability               |   **MINOR**   | Features             | `feat(editor): add multi-cursor keyboard shortcuts`    |
| `fix`            | A bugfix resolving an existing issue                        |   **PATCH**   | Bug Fixes            | `fix(parser): escape literal pipes inside inline code` |
| `feat!` / `fix!` | Any change introducing a breaking API modification          |   **MAJOR**   | ⚠️ Breaking Changes | `feat(api)!: remove deprecated v1 endpoint`            |
| `docs`           | Documentation only changes (README, guides, comments)       |     None      | Documentation        | `docs(readme): add docker port configuration table`    |
| `perf`           | Code change improving algorithmic performance or latency    |   **PATCH**   | Performance          | `perf(engine): optimize AST matrix transposition`      |
| `refactor`       | Code restructuring without changing behavior or fixing bugs |     None      | Internal             | `refactor(utils): extract delimiter sniffing logic`    |
| `chore`          | Build process, package updates, or tooling configuration    |     None      | Chores               | `chore(deps): bump next from 15.0 to 15.1`             |

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 Conventional Commits & Semantic Releases

How should I format parameters, flags, or keys in this Conventional Commits & Semantic Releases table?

Wrap variable names in the "Commit Type" column in backticks (e.g., `feat`). 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 Conventional Commits & Semantic Releases table?

This template is specifically designed for contributing.md instructions, pr templates, commitlint configuration guides. 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 "Commit Type" column styled with left alignment?

The "Commit Type" 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 Conventional Commits & Semantic Releases 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 Conventional Commits & Semantic Releases?

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 Conventional Commits & Semantic Releases 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.