47 46. GitHub Markdown vs. Quarto (.qmd) Comparison
This page was generated by AI (after some back and forth prompting). I didn’t check the contents for accuracy (yet).
-YR
47.1 Feature Comparison Tables
47.1.1 Features Supported by Both GitHub and Quarto
Feature | GitHub Markdown | Quarto (.qmd) | Notes |
---|---|---|---|
Basic Markdown | ✅ | ✅ | Standard Markdown syntax (headers, lists, links, etc.) |
YAML Front Matter | ⚠️ Basic support (click here for more info) | ✅ Extensive support | Used for metadata and document configuration |
Math Notation | ⚠️ Basic LaTeX (click here for more info) | ✅ Advanced LaTeX | Mathematical equations and formulas |
Task Lists | ✅ Advanced | ⚠️ Basic support (click here for more info) | Checkboxes for task items |
HTML Support | ⚠️ Restricted (click here for more info) | ✅ Extensive | Embedding raw HTML within Markdown |
47.1.2 Features Only in GitHub Markdown
Feature | Description |
---|---|
Auto-linking | Automatically converts issue numbers, commit SHAs, and usernames to links |
Emoji Shortcodes | Supports emoji codes like :smile: |
User Mentions | Supports @username mentions |
Issue References | Links to issues with #123 |
PR References | Links to pull requests with #123 |
Commit References | Links to commits with SHA hashes |
47.1.3 Features Only in Quarto Markdown
Feature | Description |
---|---|
Code Execution | Can execute code chunks and display results inline |
Multiple Languages | Supports multiple programming languages in one document |
Citations | BibTeX/CSL integration for academic referencing |
Cross-references | References to figures, tables, sections, and equations |
Multi-format Output | Publishes to PDF, HTML, DOCX, presentations |
Callouts/Admonitions | Special highlighted boxes for notes, warnings, tips |
Tabsets | Tab interfaces for organizing content |
Layout Options | Column layouts, panel arrangements, page breaks |
Execution Options | Control over code visibility, evaluation, and caching |
47.2 Feature Examples Table
Feature | GitHub Markdown Example | Quarto (.qmd) Example |
---|---|---|
YAML Front Matter |
|
|
Code Blocks |
|
|
Math Notation |
|
|
Citations | Not supported natively |
|
Task Lists |
|
|
Auto-linking |
|
Not supported natively |
Cross-references | Not supported natively |
|
Callouts/Admonitions | Not supported natively |
|
Tabsets | Not supported natively |
|
Column Layout | Not supported natively |
|
47.3 Potential Conflicts Table
Element | GitHub Markdown | Quarto (.qmd) | Potential Issue |
---|---|---|---|
Code Blocks | ```python |
```{python} with options |
Code blocks from one system may not execute in the other |
Table Formatting | Basic pipe tables | Enhanced tables with options | Complex tables may not render correctly across systems |
Heading IDs | Auto-generated | Can be explicitly set with {#id} |
Links to headings may break when moving between systems |
Image Handling |  |
{width=50%} |
Image formatting options won't work in GitHub |
Footnotes | [^1] with note at bottom |
Similar but with more options | Minor syntax differences may cause rendering issues |
HTML Elements | Limited, sanitized | More extensive support | HTML that works in Quarto may be stripped in GitHub |
47.4 Self-Contained Example
Here’s how you might reference different sections of this document in Quarto:
As we can see in Section 47.1, Quarto offers many capabilities that GitHub Markdown doesn’t support.
The Section 47.2 section demonstrates syntax differences between the two formats.
Section 47.3 highlights potential issues when converting between formats.
47.5 Notes and Details
47.5.1 Note 1: Basic YAML Front Matter Support in GitHub
GitHub recognizes YAML front matter primarily for Jekyll integration. It supports basic metadata like title, description, and permalink, but lacks Quarto’s extensive formatting controls, bibliography management, execution options, and multi-format configuration capabilities.
In GitHub, YAML front matter is primarily used for Jekyll site generation, while in Quarto it controls virtually every aspect of document rendering and behavior.
47.5.2 Note 2: Basic LaTeX Support in GitHub
GitHub’s LaTeX support is implemented through MathJax and handles basic equations well, but lacks features such as equation numbering, cross-referencing of equations, alignment environments (like align, gather), and theorem environments.
It also doesn’t support LaTeX packages or custom commands that Quarto can handle through the full LaTeX engine it uses for PDF output.
47.5.3 Note 3: Restricted HTML in GitHub
GitHub sanitizes HTML for security reasons, restricting certain tags (like <script>
, <style>
, some <iframe>
usages) and attributes (especially JavaScript event handlers). Many advanced HTML features that work in Quarto will be stripped in GitHub.
GitHub also doesn’t support custom styling through CSS classes to the extent Quarto does. Quarto allows direct HTML integration with much fewer restrictions when generating HTML output.
47.5.4 Note 4: Basic Task List Support in Quarto
While Quarto does support task lists with checkbox syntax, GitHub’s implementation is more feature-rich and integrated with its platform capabilities:
- GitHub Task List Features:
- Integration with GitHub Issues and Pull Requests
- Interactive checkboxes that can be toggled directly in the interface
- Automatic task tracking and progress reporting
- Task assignment and project management integration
- Notifications when tasks are completed
- Quarto Task List Limitations:
- Primarily for display purposes
- No interactive toggling in standard output formats
- Lacks integration with project management systems
- No automatic tracking or status updates
- Requires a div container with the
.task-list
class for proper rendering
Quarto’s task lists are functionally static in most output formats, while GitHub’s implementation provides a more interactive, workflow-oriented experience.