GitHub-Flavored Markdown Rendering
Understand GFM features and extensions
Try GFM PreviewGitHub-Flavored Markdown (GFM) extends standard Markdown with features developers love: tables, task lists, strikethrough, and more. Markdown2ANY fully supports GFM, rendering these features in preview and preserving them in conversion.
This guide explains GFM features and shows how they work in Markdown2ANY.
Tables
GFM adds table syntax that standard Markdown lacks:
| Feature | Supported |
|---------|:---------:|
| Tables | Yes |
| Alignment | Yes |Use colons in the separator row to control alignment: :--- left, :---: center, ---: right.
Task Lists
Create interactive checklists:
- [x] Completed task
- [ ] Incomplete task
- [ ] Another todoTask lists render as checkboxes in preview. They're perfect for to-do lists, feature checklists, and project tracking.
Strikethrough
Mark deleted or outdated text:
~~This text is struck through~~Use double tildes around text to show it as crossed out. Useful for showing changes or deprecated information.
Autolinks
URLs and email addresses automatically become links:
Visit https://markdown2any.com
Email support@example.comNo special syntax needed—GFM recognizes URLs and makes them clickable.
Fenced Code Blocks
Use triple backticks for code blocks with optional language specification:
```javascript
function hello() {
console.log('Hello, World!');
}
```Specify the language after the opening backticks for syntax highlighting. Common languages: javascript, python, java, html, css, bash, json, typescript.
GFM vs Standard Markdown
| Feature | Standard | GFM |
|---|---|---|
| Tables | No | Yes |
| Task lists | No | Yes |
| Strikethrough | No | Yes |
| Autolinks | Limited | Yes |
| Fenced code | No | Yes |
| Syntax highlighting | No | Yes |
Using GFM in Markdown2ANY
All GFM features work automatically:
GFM features are preserved in HTML output. For PDF and Word, features like tables and strikethrough convert to their document equivalents.
Related Guides
- Advanced Markdown Features - More extended syntax
- Markdown Basics Guide - Start with fundamentals
- Live Markdown Preview Guide - Using the preview tool