{"id":"2aa41672-6636-4bdf-9c53-57f8eef7e640","shortId":"YYq78F","kind":"skill","title":"markdown-to-html","tagline":"Convert Markdown files to HTML similar to `marked.js`, `pandoc`, `gomarkdown/markdown`, or similar tools; or writing custom script to convert markdown to html and/or working on web template systems like `jekyll/jekyll`, `gohugoio/hugo`, or similar web templating systems that util","description":"# Markdown to HTML Conversion\n\nExpert skill for converting Markdown documents to HTML using the marked.js library, or writing data conversion scripts; in this case scripts similar to [markedJS/marked](https://github.com/markedjs/marked) repository. For custom scripts knowledge is not confined to `marked.js`, but data conversion methods are utilized from tools like [pandoc](https://github.com/jgm/pandoc) and [gomarkdown/markdown](https://github.com/gomarkdown/markdown) for data conversion; [jekyll/jekyll](https://github.com/jekyll/jekyll) and [gohugoio/hugo](https://github.com/gohugoio/hugo) for templating systems.\n\nThe conversion script or tool should handle single files, batch conversions, and advanced configurations.\n\n## When to Use This Skill\n\n- User asks to \"convert markdown to html\" or \"transform md files\"\n- User wants to \"render markdown\" as HTML output\n- User needs to generate HTML documentation from .md files\n- User is building static sites from Markdown content\n- User is building template system that converts markdown to html\n- User is working on a tool, widget, or custom template for an existing templating system\n- User wants to preview Markdown as rendered HTML\n\n## Converting Markdown to HTML\n\n### Essential Basic Conversions\n\nFor more see [basic-markdown-to-html.md](references/basic-markdown-to-html.md)\n\n```text\n    ```markdown\n    # Level 1\n    ## Level 2\n\n    One sentence with a [link](https://example.com), and a HTML snippet like `<p>paragraph tag</p>`.\n\n    - `ul` list item 1\n    - `ul` list item 2\n\n    1. `ol` list item 1\n    2. `ol` list item 1\n\n    | Table Item | Description |\n    | One | One is the spelling of the number `1`. |\n    | Two | Two is the spelling of the number `2`. |\n\n    ```js\n    var one = 1;\n    var two = 2;\n\n    function simpleMath(x, y) {\n     return x + y;\n    }\n    console.log(simpleMath(one, two));\n    ```\n    ```\n\n    ```html\n    <h1>Level 1</h1>\n    <h2>Level 2</h2>\n\n    <p>One sentence with a <a href=\"https://example.com\">link</a>, and a HTML snippet like <code>&lt;p&gt;paragraph tag&lt;/p&gt;</code>.</p>\n\n    <ul>\n     <li>`ul` list item 1</li>\n     <li>`ul` list item 2</li>\n    </ul>\n\n    <ol>\n     <li>`ol` list item 1</li>\n     <li>`ol` list item 2</li>\n    </ol>\n\n    <table>\n     <thead>\n      <tr>\n       <th>Table Item</th>\n       <th>Description</th>\n      </tr>\n     </thead>\n     <tbody>\n      <tr>\n       <td>One</td>\n       <td>One is the spelling of the number `1`.</td>\n      </tr>\n      <tr>\n       <td>Two</td>\n       <td>Two is the spelling of the number `2`.</td>\n      </tr>\n     </tbody>\n    </table>\n\n    <pre>\n     <code>var one = 1;\n     var two = 2;\n\n     function simpleMath(x, y) {\n      return x + y;\n     }\n     console.log(simpleMath(one, two));</code>\n    </pre>\n    ```\n```\n\n### Code Block Conversions\n\nFor more see [code-blocks-to-html.md](references/code-blocks-to-html.md)\n\n```text\n\n    ```markdown\n    your code here\n    ```\n\n    ```html\n    <pre><code class=\"language-md\">\n    your code here\n    </code></pre>\n    ```\n\n    ```js\n    console.log(\"Hello world\");\n    ```\n\n    ```html\n    <pre><code class=\"language-js\">\n    console.log(\"Hello world\");\n    </code></pre>\n    ```\n\n    ```markdown\n      ```\n\n      ```\n      visible backticks\n      ```\n\n      ```\n    ```\n\n    ```html\n      <pre><code>\n      ```\n\n      visible backticks\n\n      ```\n      </code></pre>\n    ```\n```\n\n### Collapsed Section Conversions\n\nFor more see [collapsed-sections-to-html.md](references/collapsed-sections-to-html.md)\n\n```text\n    ```markdown\n    <details>\n    <summary>More info</summary>\n\n    ### Header inside\n\n    - Lists\n    - **Formatting**\n    - Code blocks\n\n        ```js\n        console.log(\"Hello\");\n        ```\n\n    </details>\n    ```\n\n    ```html\n    <details>\n    <summary>More info</summary>\n\n    <h3>Header inside</h3>\n\n    <ul>\n     <li>Lists</li>\n     <li><strong>Formatting</strong></li>\n     <li>Code blocks</li>\n    </ul>\n\n    <pre>\n     <code class=\"language-js\">console.log(\"Hello\");</code>\n    </pre>\n\n    </details>\n    ```\n```\n\n### Mathematical Expression Conversions\n\nFor more see [writing-mathematical-expressions-to-html.md](references/writing-mathematical-expressions-to-html.md)\n\n```text\n    ```markdown\n    This sentence uses `$` delimiters to show math inline: $\\sqrt{3x-1}+(1+x)^2$\n    ```\n\n    ```html\n    <p>This sentence uses <code>$</code> delimiters to show math inline:\n     <math-renderer><math xmlns=\"http://www.w3.org/1998/Math/MathML\">\n      <msqrt><mn>3</mn><mi>x</mi><mo>−</mo><mn>1</mn></msqrt>\n      <mo>+</mo><mo>(</mo><mn>1</mn><mo>+</mo><mi>x</mi>\n      <msup><mo>)</mo><mn>2</mn></msup>\n     </math>\n    </math-renderer>\n    </p>\n    ```\n\n    ```markdown\n    **The Cauchy-Schwarz Inequality**\\\n    $$\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)$$\n    ```\n\n    ```html\n    <p><strong>The Cauchy-Schwarz Inequality</strong><br>\n     <math-renderer>\n      <math xmlns=\"http://www.w3.org/1998/Math/MathML\">\n       <msup>\n        <mrow><mo>(</mo>\n         <munderover><mo data-mjx-texclass=\"OP\">∑</mo>\n          <mrow><mi>k</mi><mo>=</mo><mn>1</mn></mrow><mi>n</mi>\n         </munderover>\n         <msub><mi>a</mi><mi>k</mi></msub>\n         <msub><mi>b</mi><mi>k</mi></msub>\n         <mo>)</mo>\n        </mrow>\n        <mn>2</mn>\n       </msup>\n       <mo>≤</mo>\n       <mrow><mo>(</mo>\n        <munderover><mo>∑</mo>\n         <mrow><mi>k</mi><mo>=</mo><mn>1</mn></mrow>\n         <mi>n</mi>\n        </munderover>\n        <msubsup><mi>a</mi><mi>k</mi><mn>2</mn></msubsup>\n        <mo>)</mo>\n       </mrow>\n       <mrow><mo>(</mo>\n         <munderover><mo>∑</mo>\n          <mrow><mi>k</mi><mo>=</mo><mn>1</mn></mrow>\n          <mi>n</mi>\n         </munderover>\n         <msubsup><mi>b</mi><mi>k</mi><mn>2</mn></msubsup>\n         <mo>)</mo>\n       </mrow>\n      </math>\n     </math-renderer></p>\n    ```\n```\n\n### Table Conversions\n\nFor more see [tables-to-html.md](references/tables-to-html.md)\n\n```text\n    ```markdown\n    | First Header  | Second Header |\n    | ------------- | ------------- |\n    | Content Cell  | Content Cell  |\n    | Content Cell  | Content Cell  |\n    ```\n\n    ```html\n    <table>\n     <thead><tr><th>First Header</th><th>Second Header</th></tr></thead>\n     <tbody>\n      <tr><td>Content Cell</td><td>Content Cell</td></tr>\n      <tr><td>Content Cell</td><td>Content Cell</td></tr>\n     </tbody>\n    </table>\n    ```\n\n    ```markdown\n    | Left-aligned | Center-aligned | Right-aligned |\n    | :---         |     :---:      |          ---: |\n    | git status   | git status     | git status    |\n    | git diff     | git diff       | git diff      |\n    ```\n\n    ```html\n    <table>\n      <thead>\n       <tr>\n        <th align=\"left\">Left-aligned</th>\n        <th align=\"center\">Center-aligned</th>\n        <th align=\"right\">Right-aligned</th>\n       </tr>\n      </thead>\n      <tbody>\n       <tr>\n        <td align=\"left\">git status</td>\n        <td align=\"center\">git status</td>\n        <td align=\"right\">git status</td>\n       </tr>\n       <tr>\n        <td align=\"left\">git diff</td>\n        <td align=\"center\">git diff</td>\n        <td align=\"right\">git diff</td>\n       </tr>\n      </tbody>\n    </table>\n    ```\n```\n\n## Working with [`markedJS/marked`](references/marked.md)\n\n### Prerequisites\n\n- Node.js installed (for CLI or programmatic usage)\n- Install marked globally for CLI: `npm install -g marked`\n- Or install locally: `npm install marked`\n\n### Quick Conversion Methods\n\nSee [marked.md](references/marked.md) **Quick Conversion Methods**\n\n### Step-by-Step Workflows\n\nSee [marked.md](references/marked.md) **Step-by-Step Workflows**\n\n### CLI Configuration\n\n### Using Config Files\n\nCreate `~/.marked.json` for persistent options:\n\n```json\n{\n  \"gfm\": true,\n  \"breaks\": true\n}\n```\n\nOr use a custom config:\n\n```bash\nmarked -i input.md -o output.html -c config.json\n```\n\n### CLI Options Reference\n\n| Option | Description |\n|--------|-------------|\n| `-i, --input <file>` | Input Markdown file |\n| `-o, --output <file>` | Output HTML file |\n| `-s, --string <string>` | Parse string instead of file |\n| `-c, --config <file>` | Use custom config file |\n| `--gfm` | Enable GitHub Flavored Markdown |\n| `--breaks` | Convert newlines to `<br>` |\n| `--help` | Show all options |\n\n### Security Warning\n\n⚠️ **Marked does NOT sanitize output HTML.** For untrusted input, use a sanitizer:\n\n```javascript\nimport { marked } from 'marked';\nimport DOMPurify from 'dompurify';\n\nconst unsafeHtml = marked.parse(untrustedMarkdown);\nconst safeHtml = DOMPurify.sanitize(unsafeHtml);\n```\n\nRecommended sanitizers:\n\n- [DOMPurify](https://github.com/cure53/DOMPurify) (recommended)\n- [sanitize-html](https://github.com/apostrophecms/sanitize-html)\n- [js-xss](https://github.com/leizongmin/js-xss)\n\n### Supported Markdown Flavors\n\n| Flavor | Support |\n|--------|---------|\n| Original Markdown | 100% |\n| CommonMark 0.31 | 98% |\n| GitHub Flavored Markdown | 97% |\n\n### Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| Special characters at file start | Strip zero-width chars: `content.replace(/^[\\u200B\\u200C\\u200D\\uFEFF]/,\"\")` |\n| Code blocks not highlighting | Add a syntax highlighter like highlight.js |\n| Tables not rendering | Ensure `gfm: true` option is set |\n| Line breaks ignored | Set `breaks: true` in options |\n| XSS vulnerability concerns | Use DOMPurify to sanitize output |\n\n## Working with [`pandoc`](references/pandoc.md)\n\n### Prerequisites\n\n- Pandoc installed (download from <https://pandoc.org/installing.html>)\n- For PDF output: LaTeX installation (MacTeX on macOS, MiKTeX on Windows, texlive on Linux)\n- Terminal/command prompt access\n\n### Quick Conversion Methods\n\n#### Method 1: CLI Basic Conversion\n\n```bash\n# Convert markdown to HTML\npandoc input.md -o output.html\n\n# Convert with standalone document (includes header/footer)\npandoc input.md -s -o output.html\n\n# Explicit format specification\npandoc input.md -f markdown -t html -s -o output.html\n```\n\n#### Method 2: Filter Mode (Interactive)\n\n```bash\n# Start pandoc as a filter\npandoc\n\n# Type markdown, then Ctrl-D (Linux/macOS) or Ctrl-Z+Enter (Windows)\nHello *pandoc*!\n# Output: <p>Hello <em>pandoc</em>!</p>\n```\n\n#### Method 3: Format Conversion\n\n```bash\n# HTML to Markdown\npandoc -f html -t markdown input.html -o output.md\n\n# Markdown to LaTeX\npandoc input.md -s -o output.tex\n\n# Markdown to PDF (requires LaTeX)\npandoc input.md -s -o output.pdf\n\n# Markdown to Word\npandoc input.md -s -o output.docx\n```\n\n### CLI Configuration\n\n| Option | Description |\n|--------|-------------|\n| `-f, --from <format>` | Input format (markdown, html, latex, etc.) |\n| `-t, --to <format>` | Output format (html, latex, pdf, docx, etc.) |\n| `-s, --standalone` | Produce standalone document with header/footer |\n| `-o, --output <file>` | Output file (inferred from extension) |\n| `--mathml` | Convert TeX math to MathML |\n| `--metadata title=\"Title\"` | Set document metadata |\n| `--toc` | Include table of contents |\n| `--template <file>` | Use custom template |\n| `--help` | Show all options |\n\n### Security Warning\n\n⚠️ **Pandoc processes input faithfully.** When converting untrusted markdown:\n\n- Use `--sandbox` mode to disable external file access\n- Validate input before processing\n- Sanitize HTML output if displayed in browsers\n\n```bash\n# Run in sandbox mode for untrusted input\npandoc --sandbox input.md -o output.html\n```\n\n### Supported Markdown Flavors\n\n| Flavor | Support |\n|--------|---------|\n| Pandoc Markdown | 100% (native) |\n| CommonMark | Full (use `-f commonmark`) |\n| GitHub Flavored Markdown | Full (use `-f gfm`) |\n| MultiMarkdown | Partial |\n\n### Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| PDF generation fails | Install LaTeX (MacTeX, MiKTeX, or texlive) |\n| Encoding issues on Windows | Run `chcp 65001` before using pandoc |\n| Missing standalone headers | Add `-s` flag for complete documents |\n| Math not rendering | Use `--mathml` or `--mathjax` option |\n| Tables not rendering | Ensure proper table syntax with pipes and dashes |\n\n## Working with [`gomarkdown/markdown`](references/gomarkdown.md)\n\n### Prerequisites\n\n- Go 1.18 or higher installed\n- Install the library: `go get github.com/gomarkdown/markdown`\n- For CLI tool: `go install github.com/gomarkdown/mdtohtml@latest`\n\n### Quick Conversion Methods\n\n#### Method 1: Simple Conversion (Go)\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n    \"github.com/gomarkdown/markdown\"\n)\n\nfunc main() {\n    md := []byte(\"# Hello World\\n\\nThis is **bold** text.\")\n    html := markdown.ToHTML(md, nil, nil)\n    fmt.Println(string(html))\n}\n```\n\n#### Method 2: CLI Tool\n\n```bash\n# Install mdtohtml\ngo install github.com/gomarkdown/mdtohtml@latest\n\n# Convert file\nmdtohtml input.md output.html\n\n# Convert file (output to stdout)\nmdtohtml input.md\n```\n\n#### Method 3: Custom Parser and Renderer\n\n```go\npackage main\n\nimport (\n    \"github.com/gomarkdown/markdown\"\n    \"github.com/gomarkdown/markdown/html\"\n    \"github.com/gomarkdown/markdown/parser\"\n)\n\nfunc mdToHTML(md []byte) []byte {\n    // Create parser with extensions\n    extensions := parser.CommonExtensions | parser.AutoHeadingIDs | parser.NoEmptyLineBeforeBlock\n    p := parser.NewWithExtensions(extensions)\n    doc := p.Parse(md)\n\n    // Create HTML renderer with extensions\n    htmlFlags := html.CommonFlags | html.HrefTargetBlank\n    opts := html.RendererOptions{Flags: htmlFlags}\n    renderer := html.NewRenderer(opts)\n\n    return markdown.Render(doc, renderer)\n}\n```\n\n### CLI Configuration\n\nThe `mdtohtml` CLI tool has minimal options:\n\n```bash\nmdtohtml input-file [output-file]\n```\n\nFor advanced configuration, use the Go library programmatically with parser and renderer options:\n\n| Parser Extension | Description |\n|------------------|-------------|\n| `parser.CommonExtensions` | Tables, fenced code, autolinks, strikethrough, etc. |\n| `parser.AutoHeadingIDs` | Generate IDs for headings |\n| `parser.NoEmptyLineBeforeBlock` | No blank line needed before blocks |\n| `parser.MathJax` | MathJax support for LaTeX math |\n\n| HTML Flag | Description |\n|-----------|-------------|\n| `html.CommonFlags` | Common HTML output flags |\n| `html.HrefTargetBlank` | Add `target=\"_blank\"` to links |\n| `html.CompletePage` | Generate complete HTML page |\n| `html.UseXHTML` | Generate XHTML output |\n\n### Security Warning\n\n⚠️ **gomarkdown does NOT sanitize output HTML.** For untrusted input, use Bluemonday:\n\n```go\nimport (\n    \"github.com/microcosm-cc/bluemonday\"\n    \"github.com/gomarkdown/markdown\"\n)\n\nmaybeUnsafeHTML := markdown.ToHTML(md, nil, nil)\nhtml := bluemonday.UGCPolicy().SanitizeBytes(maybeUnsafeHTML)\n```\n\nRecommended sanitizer: [Bluemonday](https://github.com/microcosm-cc/bluemonday)\n\n### Supported Markdown Flavors\n\n| Flavor | Support |\n|--------|---------|\n| Original Markdown | 100% |\n| CommonMark | High (with extensions) |\n| GitHub Flavored Markdown | High (tables, fenced code, strikethrough) |\n| MathJax/LaTeX Math | Supported via extension |\n| Mmark | Supported |\n\n### Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| Windows/Mac newlines not parsed | Use `parser.NormalizeNewlines(input)` |\n| Tables not rendering | Enable `parser.Tables` extension |\n| Code blocks without highlighting | Integrate with syntax highlighter like Chroma |\n| Math not rendering | Enable `parser.MathJax` extension |\n| XSS vulnerabilities | Use Bluemonday to sanitize output |\n\n## Working with [`jekyll`](references/jekyll.md)\n\n### Prerequisites\n\n- Ruby version 2.7.0 or higher\n- RubyGems\n- GCC and Make (for native extensions)\n- Install Jekyll and Bundler: `gem install jekyll bundler`\n\n### Quick Conversion Methods\n\n#### Method 1: Create New Site\n\n```bash\n# Create a new Jekyll site\njekyll new myblog\n\n# Change to site directory\ncd myblog\n\n# Build and serve locally\nbundle exec jekyll serve\n\n# Access at http://localhost:4000\n```\n\n#### Method 2: Build Static Site\n\n```bash\n# Build site to _site directory\nbundle exec jekyll build\n\n# Build with production environment\nJEKYLL_ENV=production bundle exec jekyll build\n```\n\n#### Method 3: Live Reload Development\n\n```bash\n# Serve with live reload\nbundle exec jekyll serve --livereload\n\n# Serve with drafts\nbundle exec jekyll serve --drafts\n```\n\n### CLI Configuration\n\n| Command | Description |\n|---------|-------------|\n| `jekyll new <path>` | Create new Jekyll site |\n| `jekyll build` | Build site to `_site` directory |\n| `jekyll serve` | Build and serve locally |\n| `jekyll clean` | Remove generated files |\n| `jekyll doctor` | Check for configuration issues |\n\n| Serve Options | Description |\n|---------------|-------------|\n| `--livereload` | Reload browser on changes |\n| `--drafts` | Include draft posts |\n| `--port <port>` | Set server port (default: 4000) |\n| `--host <host>` | Set server host (default: localhost) |\n| `--baseurl <url>` | Set base URL |\n\n### Security Warning\n\n⚠️ **Jekyll security considerations:**\n\n- Avoid using `safe: false` in production\n- Use `exclude` in `_config.yml` to prevent sensitive files from being published\n- Sanitize user-generated content if accepting external input\n- Keep Jekyll and plugins updated\n\n```yaml\n# _config.yml security settings\nexclude:\n  - Gemfile\n  - Gemfile.lock\n  - node_modules\n  - vendor\n```\n\n### Supported Markdown Flavors\n\n| Flavor | Support |\n|--------|---------|\n| Kramdown (default) | 100% |\n| CommonMark | Via plugin (jekyll-commonmark) |\n| GitHub Flavored Markdown | Via plugin (jekyll-commonmark-ghpages) |\n| RedCarpet | Via plugin (deprecated) |\n\nConfigure markdown processor in `_config.yml`:\n\n```yaml\nmarkdown: kramdown\nkramdown:\n  input: GFM\n  syntax_highlighter: rouge\n```\n\n### Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| Ruby 3.0+ fails to serve | Run `bundle add webrick` |\n| Gem dependency errors | Run `bundle install` |\n| Slow builds | Use `--incremental` flag |\n| Liquid syntax errors | Check for unescaped `{` in content |\n| Plugin not loading | Add to `_config.yml` plugins list |\n\n## Working with [`hugo`](references/hugo.md)\n\n### Prerequisites\n\n- Hugo installed (download from <https://gohugo.io/installation/>)\n- Git (recommended for themes and modules)\n- Go (optional, for Hugo Modules)\n\n### Quick Conversion Methods\n\n#### Method 1: Create New Site\n\n```bash\n# Create a new Hugo site\nhugo new site mysite\n\n# Change to site directory\ncd mysite\n\n# Add a theme\ngit init\ngit submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/ananke\necho \"theme = 'ananke'\" >> hugo.toml\n\n# Create content\nhugo new content posts/my-first-post.md\n\n# Start development server\nhugo server -D\n```\n\n#### Method 2: Build Static Site\n\n```bash\n# Build site to public directory\nhugo\n\n# Build with minification\nhugo --minify\n\n# Build for specific environment\nhugo --environment production\n```\n\n#### Method 3: Development Server\n\n```bash\n# Start server with drafts\nhugo server -D\n\n# Start with live reload and bind to all interfaces\nhugo server --bind 0.0.0.0 --baseURL http://localhost:1313/\n\n# Start with specific port\nhugo server --port 8080\n```\n\n### CLI Configuration\n\n| Command | Description |\n|---------|-------------|\n| `hugo new site <name>` | Create new Hugo site |\n| `hugo new content <path>` | Create new content file |\n| `hugo` | Build site to `public` directory |\n| `hugo server` | Start development server |\n| `hugo mod init` | Initialize Hugo Modules |\n\n| Build Options | Description |\n|---------------|-------------|\n| `-D, --buildDrafts` | Include draft content |\n| `-E, --buildExpired` | Include expired content |\n| `-F, --buildFuture` | Include future-dated content |\n| `--minify` | Minify output |\n| `--gc` | Run garbage collection after build |\n| `-d, --destination <path>` | Output directory |\n\n| Server Options | Description |\n|----------------|-------------|\n| `--bind <ip>` | Interface to bind to |\n| `-p, --port <port>` | Port number (default: 1313) |\n| `--liveReloadPort <port>` | Live reload port |\n| `--disableLiveReload` | Disable live reload |\n| `--navigateToChanged` | Navigate to changed content |\n\n### Security Warning\n\n⚠️ **Hugo security considerations:**\n\n- Configure security policy in `hugo.toml` for external commands\n- Use `--enableGitInfo` carefully with public repositories\n- Validate shortcode parameters for user-generated content\n\n```toml\n# hugo.toml security settings\n[security]\n  enableInlineShortcodes = false\n  [security.exec]\n    allow = ['^go$', '^npx$', '^postcss$']\n  [security.funcs]\n    getenv = ['^HUGO_', '^CI$']\n  [security.http]\n    methods = ['(?i)GET|POST']\n    urls = ['.*']\n```\n\n### Supported Markdown Flavors\n\n| Flavor | Support |\n|--------|---------|\n| Goldmark (default) | 100% (CommonMark compliant) |\n| GitHub Flavored Markdown | Full (tables, strikethrough, autolinks) |\n| CommonMark | 100% |\n| Blackfriday (legacy) | Deprecated, not recommended |\n\nConfigure markdown in `hugo.toml`:\n\n```toml\n[markup]\n  [markup.goldmark]\n    [markup.goldmark.extensions]\n      definitionList = true\n      footnote = true\n      linkify = true\n      strikethrough = true\n      table = true\n      taskList = true\n    [markup.goldmark.renderer]\n      unsafe = false  # Set true to allow raw HTML\n```\n\n### Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| \"Page not found\" on paths | Check `baseURL` in config |\n| Theme not loading | Verify theme in `themes/` or Hugo Modules |\n| Slow builds | Use `--templateMetrics` to identify bottlenecks |\n| Raw HTML not rendering | Set `unsafe = true` in goldmark config |\n| Images not loading | Check `static/` folder structure |\n| Module errors | Run `hugo mod tidy` |\n\n## References\n\n### Writing and Styling Markdown\n\n- [basic-markdown.md](references/basic-markdown.md)\n- [code-blocks.md](references/code-blocks.md)\n- [collapsed-sections.md](references/collapsed-sections.md)\n- [tables.md](references/tables.md)\n- [writing-mathematical-expressions.md](references/writing-mathematical-expressions.md)\n- Markdown Guide: <https://www.markdownguide.org/basic-syntax/>\n- Styling Markdown: <https://github.com/sindresorhus/github-markdown-css>\n\n### [`markedJS/marked`](references/marked.md)\n\n- Official documentation: <https://marked.js.org/>\n- Advanced options: <https://marked.js.org/using_advanced>\n- Extensibility: <https://marked.js.org/using_pro>\n- GitHub repository: <https://github.com/markedjs/marked>\n\n### [`pandoc`](references/pandoc.md)\n\n- Getting started: <https://pandoc.org/getting-started.html>\n- Official documentation: <https://pandoc.org/MANUAL.html>\n- Extensibility: <https://pandoc.org/extras.html>\n- GitHub repository: <https://github.com/jgm/pandoc>\n\n### [`gomarkdown/markdown`](references/gomarkdown.md)\n\n- Official documentation: <https://pkg.go.dev/github.com/gomarkdown/markdown>\n- Advanced configuration: <https://pkg.go.dev/github.com/gomarkdown/markdown@v0.0.0-20250810172220-2e2c11897d1a/html>\n- Markdown processing: <https://blog.kowalczyk.info/article/cxn3/advanced-markdown-processing-in-go.html>\n- GitHub repository: <https://github.com/gomarkdown/markdown>\n\n### [`jekyll`](references/jekyll.md)\n\n- Official documentation: <https://jekyllrb.com/docs/>\n- Configuration options: <https://jekyllrb.com/docs/configuration/options/>\n- Plugins: <https://jekyllrb.com/docs/plugins/>\n  - [Installation](https://jekyllrb.com/docs/plugins/installation/)\n  - [Generators](https://jekyllrb.com/docs/plugins/generators/)\n  - [Converters](https://jekyllrb.com/docs/plugins/converters/)\n  - [Commands](https://jekyllrb.com/docs/plugins/commands/)\n  - [Tags](https://jekyllrb.com/docs/plugins/tags/)\n  - [Filters](https://jekyllrb.com/docs/plugins/filters/)\n  - [Hooks](https://jekyllrb.com/docs/plugins/hooks/)\n- GitHub repository: <https://github.com/jekyll/jekyll>\n\n### [`hugo`](references/hugo.md)\n\n- Official documentation: <https://gohugo.io/documentation/>\n- All Settings: <https://gohugo.io/configuration/all/>\n- Editor Plugins: <https://gohugo.io/tools/editors/>\n- GitHub repository: <https://github.com/gohugoio/hugo>","tags":["markdown","html","awesome","copilot","github","agent-skills","agents","custom-agents","github-copilot","hacktoberfest","prompt-engineering"],"capabilities":["skill","source-github","skill-markdown-to-html","topic-agent-skills","topic-agents","topic-awesome","topic-custom-agents","topic-github-copilot","topic-hacktoberfest","topic-prompt-engineering"],"categories":["awesome-copilot"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/github/awesome-copilot/markdown-to-html","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add github/awesome-copilot","source_repo":"https://github.com/github/awesome-copilot","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 33270 github stars · SKILL.md body (23,916 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T18:52:16.213Z","embedding":null,"createdAt":"2026-04-18T20:25:38.983Z","updatedAt":"2026-05-18T18:52:16.213Z","lastSeenAt":"2026-05-18T18:52:16.213Z","tsv":"'-1':449 '/.marked.json':663 '/apostrophecms/sanitize-html)':769 '/article/cxn3/advanced-markdown-processing-in-go.html':2247 '/basic-syntax/':2185 '/configuration/all/':2313 '/cure53/dompurify)':762 '/docs/':2259 '/docs/configuration/options/':2264 '/docs/plugins/':2268 '/docs/plugins/commands/)':2284 '/docs/plugins/converters/)':2280 '/docs/plugins/filters/)':2292 '/docs/plugins/generators/)':2276 '/docs/plugins/hooks/)':2296 '/docs/plugins/installation/)':2272 '/docs/plugins/tags/)':2288 '/documentation/':2308 '/extras.html':2225 '/getting-started.html':2216 '/github.com/gomarkdown/markdown':2237 '/github.com/gomarkdown/markdown@v0.0.0-20250810172220-2e2c11897d1a/html':2242 '/gohugoio/hugo':2323 '/gohugoio/hugo)':113 '/gomarkdown/markdown':1177,1201,1257,1403,2252 '/gomarkdown/markdown)':101 '/gomarkdown/markdown/html':1260 '/gomarkdown/markdown/parser':1263 '/gomarkdown/mdtohtml@latest':1185,1232 '/installation/':1793 '/installing.html':855 '/jekyll/jekyll':2301 '/jekyll/jekyll)':108 '/jgm/pandoc':2230 '/jgm/pandoc)':96 '/leizongmin/js-xss)':775 '/manual.html':2221 '/markedjs/marked':2209 '/markedjs/marked)':73 '/microcosm-cc/bluemonday':1400 '/microcosm-cc/bluemonday)':1418 '/p':311 '/sindresorhus/github-markdown-css':2190 '/thenewdynamic/gohugo-theme-ananke':1839 '/tools/editors/':2318 '/using_advanced':2200 '/using_pro':2204 '0.0.0.0':1905 '0.31':785 '1':220,239,244,248,253,265,278,295,315,323,339,351,450,464,465,477,489,498,511,519,525,877,1190,1514,1809 '1.18':1166 '100':783,1094,1426,1709,2068,2079 '1313':1908,1998 '2':222,243,249,274,281,297,319,327,348,354,452,467,484,493,502,517,523,529,914,1222,1546,1858 '2.7.0':1492 '3':462,944,1246,1572,1882 '3.0':1747 '3x':448 '4000':1544,1645 '65001':1128 '8080':1916 '97':790 '98':786 'accept':1684 'access':872,1062,1541 'add':813,1135,1369,1753,1777,1829,1836 'advanc':129,1320,2196,2238 'align':567,570,573,589,592,595 'allow':2047,2111 'anank':1843 'and/or':27 'ask':137 'autolink':1339,2077 'avoid':1661 'b':481,500,515,527 'backtick':393,396 'base':1654 'baseurl':1652,1906,2123 'bash':677,881,918,947,1074,1225,1311,1518,1550,1576,1813,1862,1885 'basic':210,879 'basic-markdown-to-html.md':215 'basic-markdown.md':2171 'batch':126 'bind':1898,1904,1988,1991 'blackfriday':2080 'blank':1349,1371 'block':367,414,426,810,1353,1463 'blog.kowalczyk.info':2246 'blog.kowalczyk.info/article/cxn3/advanced-markdown-processing-in-go.html':2245 'bluemonday':1395,1415,1481 'bluemonday.ugcpolicy':1410 'bold':1211 'bottleneck':2142 'break':670,718,829,832 'browser':1073,1633 'build':166,174,1533,1547,1551,1559,1560,1570,1605,1606,1613,1762,1859,1863,1869,1874,1936,1952,1980,2137 'builddraft':1956 'buildexpir':1961 'buildfutur':1966 'bundl':1537,1556,1567,1581,1589,1752,1759 'bundler':1505,1509 'byte':1205,1267,1268 'c':683,707 'care':2027 'case':66 'cauchi':471,507 'cauchy-schwarz':470,506 'cd':1531,1827 'cell':544,546,548,550,557,559,561,563 'center':569,591 'center-align':568,590 'chang':1527,1635,1823,2010 'char':803 'charact':795 'chcp':1127 'check':1624,1769,2122,2156 'chroma':1471 'ci':2054 'clean':1618 'cli':616,624,657,685,878,985,1179,1223,1302,1306,1594,1917 'code':366,377,381,413,425,809,1338,1437,1462 'code-blocks-to-html.md':372 'code-blocks.md':2173 'collaps':397 'collapsed-sections-to-html.md':403 'collapsed-sections.md':2175 'collect':1978 'command':1596,1919,2024,2281 'common':1364 'commonmark':784,1096,1100,1427,1710,1715,1723,2069,2078 'complet':1139,1376 'compliant':2070 'concern':838 'config':660,676,708,711,2125,2152 'config.json':684 'config.yml':1670,1693,1733,1779 'configur':130,658,986,1303,1321,1595,1626,1729,1918,2017,2085,2239,2260 'confin':81 'consider':1660,2016 'console.log':289,362,384,388,416,427 'const':749,753 'content':171,543,545,547,549,556,558,560,562,1036,1682,1773,1846,1849,1930,1933,1959,1964,1971,2011,2038 'content.replace':804 'convers':46,62,86,104,118,127,211,368,399,431,531,636,642,874,880,946,1187,1192,1511,1806 'convert':5,23,50,139,178,205,719,882,890,1021,1052,1233,1238,2277 'creat':662,1269,1283,1515,1519,1600,1810,1814,1845,1924,1931 'ctrl':929,934 'ctrl-d':928 'ctrl-z':933 'custom':20,76,190,675,710,1039,1247 'd':930,1856,1892,1955,1981 'dash':1159 'data':61,85,103 'date':1970 'default':1644,1650,1708,1997,2067 'definitionlist':2093 'delimit':442,457 'depend':1756 'deprec':1728,2082 'descript':256,330,689,988,1334,1362,1597,1630,1920,1954,1987 'destin':1982 'develop':1575,1852,1883,1944 'diff':581,583,585,603,605,607 'directori':1530,1555,1610,1826,1867,1940,1984 'disabl':1059,2004 'disablelivereload':2003 'display':1071 'doc':1280,1300 'doctor':1623 'document':52,160,893,1010,1030,1140,2194,2218,2234,2256,2305 'docx':1004 'dompurifi':746,748,759,840 'dompurify.sanitize':755 'download':851,1789 'draft':1588,1593,1636,1638,1889,1958 'e':1960 'echo':1841 'editor':2314 'enabl':714,1459,1475 'enablegitinfo':2026 'enableinlineshortcod':2044 'encod':1122 'ensur':822,1152 'enter':936 'env':1565 'environ':1563,1877,1879 'error':1757,1768,2161 'essenti':209 'etc':996,1005,1341 'example.com':228 'exclud':1668,1696 'exec':1538,1557,1568,1582,1590 'exist':194 'expert':47 'expir':1963 'explicit':901 'express':430 'extens':1019,1272,1273,1279,1287,1333,1430,1443,1461,1477,1501,2201,2222 'extern':1060,1685,2023 'f':906,952,989,1099,1106,1965 'fail':1115,1748 'faith':1050 'fals':1664,2045,2107 'fenc':1337,1436 'file':7,125,146,163,661,694,699,706,712,797,1016,1061,1234,1239,1315,1318,1621,1674,1934 'filter':915,923,2289 'first':539,552 'flag':1137,1293,1361,1367,1765 'flavor':716,778,779,788,1089,1090,1102,1421,1422,1432,1704,1705,1717,2063,2064,2072 'fmt':1198 'fmt.println':1218 'folder':2158 'footnot':2095 'format':412,424,902,945,992,1000 'found':2119 'full':1097,1104,2074 'func':1202,1264 'function':282,355 'futur':1969 'future-d':1968 'g':627 'garbag':1977 'gc':1975 'gcc':1496 'gem':1506,1755 'gemfil':1697 'gemfile.lock':1698 'generat':158,1114,1343,1375,1380,1620,1681,2037,2273 'get':1174,2058,2212 'getenv':2052 'gfm':668,713,823,1107,1739 'ghpage':1724 'git':574,576,578,580,582,584,596,598,600,602,604,606,1794,1832,1834 'github':715,787,1101,1431,1716,2071,2205,2226,2248,2297,2319 'github.com':72,95,100,107,112,761,768,774,1176,1184,1200,1231,1256,1259,1262,1399,1402,1417,1838,2189,2208,2229,2251,2300,2322 'github.com/apostrophecms/sanitize-html)':767 'github.com/cure53/dompurify)':760 'github.com/gohugoio/hugo':2321 'github.com/gohugoio/hugo)':111 'github.com/gomarkdown/markdown':1175,1199,1255,1401,2250 'github.com/gomarkdown/markdown)':99 'github.com/gomarkdown/markdown/html':1258 'github.com/gomarkdown/markdown/parser':1261 'github.com/gomarkdown/mdtohtml@latest':1183,1230 'github.com/jekyll/jekyll':2299 'github.com/jekyll/jekyll)':106 'github.com/jgm/pandoc':2228 'github.com/jgm/pandoc)':94 'github.com/leizongmin/js-xss)':773 'github.com/markedjs/marked':2207 'github.com/markedjs/marked)':71 'github.com/microcosm-cc/bluemonday':1398 'github.com/microcosm-cc/bluemonday)':1416 'github.com/sindresorhus/github-markdown-css':2188 'github.com/thenewdynamic/gohugo-theme-ananke':1837 'global':622 'go':1165,1173,1181,1193,1194,1228,1251,1324,1396,1800,2048 'gohugo.io':1792,2307,2312,2317 'gohugo.io/configuration/all/':2311 'gohugo.io/documentation/':2306 'gohugo.io/installation/':1791 'gohugo.io/tools/editors/':2316 'gohugoio/hugo':35,110 'goldmark':2066,2151 'gomarkdown':1385 'gomarkdown/markdown':14,98,1162,2231 'guid':2182 'handl':123 'head':1346 'header':409,421,540,542,553,555,1134 'header/footer':895,1012 'hello':385,389,417,428,938,941,1206 'help':722,1041 'high':1428,1434 'higher':1168,1494 'highlight':812,816,1465,1469,1741 'highlight.js':818 'hook':2293 'host':1646,1649 'html':4,9,26,45,54,142,153,159,181,204,208,231,293,305,379,387,394,418,453,504,551,586,698,733,766,885,909,948,953,994,1001,1068,1213,1220,1284,1360,1365,1377,1390,1409,2113,2144 'html.commonflags':1289,1363 'html.completepage':1374 'html.hreftargetblank':1290,1368 'html.newrenderer':1296 'html.rendereroptions':1292 'html.usexhtml':1379 'htmlflag':1288,1294 'hugo':1784,1787,1803,1817,1819,1847,1854,1868,1872,1878,1890,1902,1913,1921,1926,1928,1935,1941,1946,1950,2014,2053,2134,2163,2302 'hugo.toml':1844,2021,2040,2088 'id':1344 'identifi':2141 'ignor':830 'imag':2153 'import':741,745,1197,1254,1397 'includ':894,1033,1637,1957,1962,1967 'increment':1764 'inequ':473,509 'infer':1017 'info':408,420 'init':1833,1948 'initi':1949 'inlin':446,461 'input':691,692,736,991,1049,1064,1081,1314,1393,1455,1686,1738 'input-fil':1313 'input.html':956 'input.md':680,887,897,905,963,973,981,1084,1236,1244 'insid':410,422 'instal':614,620,626,630,633,850,860,1116,1169,1170,1182,1226,1229,1502,1507,1760,1788,2269 'instead':704 'integr':1466 'interact':917 'interfac':1901,1989 'issu':792,1111,1123,1447,1627,1744,2115 'item':238,242,247,252,255,314,318,322,326,329 'javascript':740 'jekyl':1487,1503,1508,1522,1524,1539,1558,1564,1569,1583,1591,1598,1602,1604,1611,1617,1622,1658,1688,1714,1722,2253 'jekyll-commonmark':1713 'jekyll-commonmark-ghpag':1721 'jekyll/jekyll':34,105 'jekyllrb.com':2258,2263,2267,2271,2275,2279,2283,2287,2291,2295 'jekyllrb.com/docs/':2257 'jekyllrb.com/docs/configuration/options/':2262 'jekyllrb.com/docs/plugins/':2266 'jekyllrb.com/docs/plugins/commands/)':2282 'jekyllrb.com/docs/plugins/converters/)':2278 'jekyllrb.com/docs/plugins/filters/)':2290 'jekyllrb.com/docs/plugins/generators/)':2274 'jekyllrb.com/docs/plugins/hooks/)':2294 'jekyllrb.com/docs/plugins/installation/)':2270 'jekyllrb.com/docs/plugins/tags/)':2286 'js':275,383,415,771 'js-xss':770 'json':667 'k':476,480,482,488,492,497,501,510,514,516,518,522,524,528 'keep':1687 'knowledg':78 'kramdown':1707,1736,1737 'latex':859,961,971,995,1002,1117,1358 'left':474,486,495,566,588 'left-align':565,587 'legaci':2081 'leq':485 'level':219,221,294,296 'librari':58,1172,1325 'like':33,92,233,307,817,1470 'line':828,1350 'link':227,302,1373 'linkifi':2097 'linux':869 'linux/macos':931 'liquid':1766 'list':237,241,246,251,313,317,321,325,411,423,1781 'live':1573,1579,1895,2000,2005 'livereload':1585,1631 'livereloadport':1999 'load':1776,2128,2155 'local':631,1536,1616 'localhost':1543,1651,1907 'maco':863 'mactex':861,1118 'main':1196,1203,1253 'make':1498 'mark':621,628,634,678,728,742,744 'markdown':2,6,24,43,51,140,151,170,179,201,206,218,375,391,406,438,468,538,564,693,717,777,782,789,883,907,926,950,955,959,967,977,993,1054,1088,1093,1103,1420,1425,1433,1703,1718,1730,1735,2062,2073,2086,2170,2181,2187,2243 'markdown-to-html':1 'markdown.render':1299 'markdown.tohtml':1214,1405 'marked.js':12,57,83 'marked.js.org':2195,2199,2203 'marked.js.org/using_advanced':2198 'marked.js.org/using_pro':2202 'marked.md':639,650 'marked.parse':751 'markedjs/marked':70,610,2191 'markup':2090 'markup.goldmark':2091 'markup.goldmark.extensions':2092 'markup.goldmark.renderer':2105 'math':445,460,1023,1141,1359,1440,1472 'mathemat':429 'mathjax':1147,1355 'mathjax/latex':1439 'mathml':1020,1025,1145 'maybeunsafehtml':1404,1412 'md':145,162,1204,1215,1266,1282,1406 'mdtohtml':1227,1235,1243,1265,1305,1312 'metadata':1026,1031 'method':87,637,643,875,876,913,943,1188,1189,1221,1245,1512,1513,1545,1571,1807,1808,1857,1881,2056 'miktex':864,1119 'minif':1871 'minifi':1873,1972,1973 'minim':1309 'miss':1132 'mmark':1444 'mod':1947,2164 'mode':916,1057,1078 'modul':1700,1799,1804,1951,2135,2160 'multimarkdown':1108 'myblog':1526,1532 'mysit':1822,1828 'n':478,490,499,512,520,526,1208 'nativ':1095,1500 'navig':2008 'navigatetochang':2007 'need':156,1351 'new':1516,1521,1525,1599,1601,1811,1816,1820,1848,1922,1925,1929,1932 'newlin':720,1450 'nil':1216,1217,1407,1408 'node':1699 'node.js':613 'npm':625,632 'npx':2049 'nthis':1209 'number':264,273,338,347,1996 'o':681,695,888,899,911,957,965,975,983,1013,1085 'offici':2193,2217,2233,2255,2304 'ol':245,250,320,324 'one':223,257,258,277,291,298,331,332,350,364 'opt':1291,1297 'option':666,686,688,725,825,835,987,1044,1148,1310,1331,1629,1801,1953,1986,2197,2261 'origin':781,1424 'output':154,696,697,732,843,858,940,999,1014,1015,1069,1240,1317,1366,1382,1389,1484,1974,1983 'output-fil':1316 'output.docx':984 'output.html':682,889,900,912,1086,1237 'output.md':958 'output.pdf':976 'output.tex':966 'p':308,1277,1993 'p.parse':1281 'packag':1195,1252 'page':1378,2117 'pandoc':13,93,846,849,886,896,904,920,924,939,942,951,962,972,980,1047,1082,1092,1131,2210 'pandoc.org':854,2215,2220,2224 'pandoc.org/extras.html':2223 'pandoc.org/getting-started.html':2214 'pandoc.org/installing.html':853 'pandoc.org/manual.html':2219 'paragraph':234,309 'paramet':2033 'pars':702,1452 'parser':1248,1270,1328,1332 'parser.autoheadingids':1275,1342 'parser.commonextensions':1274,1335 'parser.mathjax':1354,1476 'parser.newwithextensions':1278 'parser.noemptylinebeforeblock':1276,1347 'parser.normalizenewlines':1454 'parser.tables':1460 'partial':1109 'path':2121 'pdf':857,969,1003,1113 'persist':665 'pipe':1157 'pkg.go.dev':2236,2241 'pkg.go.dev/github.com/gomarkdown/markdown':2235 'pkg.go.dev/github.com/gomarkdown/markdown@v0.0.0-20250810172220-2e2c11897d1a/html':2240 'plugin':1690,1712,1720,1727,1774,1780,2265,2315 'polici':2019 'port':1640,1643,1912,1915,1994,1995,2002 'post':1639,2059 'postcss':2050 'posts/my-first-post.md':1850 'prerequisit':612,848,1164,1489,1786 'prevent':1672 'preview':200 'process':1048,1066,2244 'processor':1731 'produc':1008 'product':1562,1566,1666,1880 'programmat':618,1326 'prompt':871 'proper':1153 'public':1866,1939,2029 'publish':1677 'quick':635,641,873,1186,1510,1805 'raw':2112,2143 'recommend':757,763,1413,1795,2084 'redcarpet':1725 'refer':687,2166 'references/basic-markdown-to-html.md':216 'references/basic-markdown.md':2172 'references/code-blocks-to-html.md':373 'references/code-blocks.md':2174 'references/collapsed-sections-to-html.md':404 'references/collapsed-sections.md':2176 'references/gomarkdown.md':1163,2232 'references/hugo.md':1785,2303 'references/jekyll.md':1488,2254 'references/marked.md':611,640,651,2192 'references/pandoc.md':847,2211 'references/tables-to-html.md':536 'references/tables.md':2178 'references/writing-mathematical-expressions-to-html.md':436 'references/writing-mathematical-expressions.md':2180 'reload':1574,1580,1632,1896,2001,2006 'remov':1619 'render':150,203,821,1143,1151,1250,1285,1295,1301,1330,1458,1474,2146 'repositori':74,2030,2206,2227,2249,2298,2320 'requir':970 'return':286,359,1298 'right':483,494,503,572,594 'right-align':571,593 'roug':1742 'rubi':1490,1746 'rubygem':1495 'run':1075,1126,1751,1758,1976,2162 'safe':1663 'safehtml':754 'sandbox':1056,1077,1083 'sanit':731,739,758,765,842,1067,1388,1414,1483,1678 'sanitize-html':764 'sanitizebyt':1411 'schwarz':472,508 'script':21,63,67,77,119 'second':541,554 'section':398 'secur':726,1045,1383,1656,1659,1694,2012,2015,2018,2041,2043 'security.exec':2046 'security.funcs':2051 'security.http':2055 'see':214,371,402,434,534,638,649 'sensit':1673 'sentenc':224,299,440,455 'serv':1535,1540,1577,1584,1586,1592,1612,1615,1628,1750 'server':1642,1648,1853,1855,1884,1887,1891,1903,1914,1942,1945,1985 'set':827,831,1029,1641,1647,1653,1695,2042,2108,2147,2310 'shortcod':2032 'show':444,459,723,1042 'similar':10,16,37,68 'simpl':1191 'simplemath':283,290,356,363 'singl':124 'site':168,1517,1523,1529,1549,1552,1554,1603,1607,1609,1812,1818,1821,1825,1861,1864,1923,1927,1937 'skill':48,135 'skill-markdown-to-html' 'slow':1761,2136 'snippet':232,306 'solut':793,1112,1448,1745,2116 'source-github' 'special':794 'specif':903,1876,1911 'spell':261,270,335,344 'sqrt':447 'standalon':892,1007,1009,1133 'start':798,919,1851,1886,1893,1909,1943,2213 'static':167,1548,1860,2157 'status':575,577,579,597,599,601 'stdout':1242 'step':645,647,653,655 'step-by-step':644,652 'strikethrough':1340,1438,2076,2099 'string':701,703,1219 'strip':799 'structur':2159 'style':2169,2186 'submodul':1835 'sum':475,487,496 'support':776,780,1087,1091,1356,1419,1423,1441,1445,1702,1706,2061,2065 'syntax':815,1155,1468,1740,1767 'system':32,40,116,176,196 'tabl':254,328,530,819,1034,1149,1154,1336,1435,1456,2075,2101 'tables-to-html.md':535 'tables.md':2177 'tag':235,310,2285 'target':1370 'tasklist':2103 'templat':31,39,115,175,191,195,1037,1040 'templatemetr':2139 'terminal/command':870 'tex':1022 'texliv':867,1121 'text':217,374,405,437,537,1212 'theme':1797,1831,1842,2126,2130,2132 'themes/ananke':1840 'tidi':2165 'titl':1027,1028 'toc':1032 'toml':2039,2089 'tool':17,91,121,187,1180,1224,1307 'topic-agent-skills' 'topic-agents' 'topic-awesome' 'topic-custom-agents' 'topic-github-copilot' 'topic-hacktoberfest' 'topic-prompt-engineering' 'transform':144 'troubleshoot':791,1110,1446,1743,2114 'true':669,671,824,833,2094,2096,2098,2100,2102,2104,2109,2149 'two':266,267,280,292,340,341,353,365 'type':925 'u200b':805 'u200c':806 'u200d':807 'ufeff':808 'ul':236,240,312,316 'unescap':1771 'unsaf':2106,2148 'unsafehtml':750,756 'untrust':735,1053,1080,1392 'untrustedmarkdown':752 'updat':1691 'url':1655,2060 'usag':619 'use':55,133,441,456,659,673,709,737,839,1038,1055,1098,1105,1130,1144,1322,1394,1453,1480,1662,1667,1763,2025,2138 'user':136,147,155,164,172,182,197,1680,2036 'user-gener':1679,2035 'util':42,89 'valid':1063,2031 'var':276,279,349,352 'vendor':1701 'verifi':2129 'version':1491 'via':1442,1711,1719,1726 'visibl':392,395 'vulner':837,1479 'want':148,198 'warn':727,1046,1384,1657,2013 'web':30,38 'webrick':1754 'widget':188 'width':802 'window':866,937,1125 'windows/mac':1449 'without':1464 'word':979 'work':28,184,608,844,1160,1485,1782 'workflow':648,656 'world':386,390,1207 'write':19,60,2167 'writing-mathematical-expressions-to-html.md':435 'writing-mathematical-expressions.md':2179 'www.markdownguide.org':2184 'www.markdownguide.org/basic-syntax/':2183 'x':284,287,357,360,451,463,466 'xhtml':1381 'xss':772,836,1478 'y':285,288,358,361 'yaml':1692,1734 'z':935 'zero':801 'zero-width':800","prices":[{"id":"5865dd2e-ebea-49c3-a6a7-ef3ead9b565e","listingId":"2aa41672-6636-4bdf-9c53-57f8eef7e640","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"github","category":"awesome-copilot","install_from":"skills.sh"},"createdAt":"2026-04-18T20:25:38.983Z"}],"sources":[{"listingId":"2aa41672-6636-4bdf-9c53-57f8eef7e640","source":"github","sourceId":"github/awesome-copilot/markdown-to-html","sourceUrl":"https://github.com/github/awesome-copilot/tree/main/skills/markdown-to-html","isPrimary":false,"firstSeenAt":"2026-04-18T21:50:05.055Z","lastSeenAt":"2026-05-18T18:52:16.213Z"},{"listingId":"2aa41672-6636-4bdf-9c53-57f8eef7e640","source":"skills_sh","sourceId":"github/awesome-copilot/markdown-to-html","sourceUrl":"https://skills.sh/github/awesome-copilot/markdown-to-html","isPrimary":true,"firstSeenAt":"2026-04-18T20:25:38.983Z","lastSeenAt":"2026-05-07T22:40:17.655Z"}],"details":{"listingId":"2aa41672-6636-4bdf-9c53-57f8eef7e640","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"github","slug":"markdown-to-html","github":{"repo":"github/awesome-copilot","stars":33270,"topics":["agent-skills","agents","ai","awesome","custom-agents","github-copilot","hacktoberfest","prompt-engineering"],"license":"mit","html_url":"https://github.com/github/awesome-copilot","pushed_at":"2026-05-18T01:26:59Z","description":"Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.","skill_md_sha":"430ad69a4130c327b4316c6a200cbe9a5106e1f1","skill_md_path":"skills/markdown-to-html/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/github/awesome-copilot/tree/main/skills/markdown-to-html"},"layout":"multi","source":"github","category":"awesome-copilot","frontmatter":{"name":"markdown-to-html","description":"Convert Markdown files to HTML similar to `marked.js`, `pandoc`, `gomarkdown/markdown`, or similar tools; or writing custom script to convert markdown to html and/or working on web template systems like `jekyll/jekyll`, `gohugoio/hugo`, or similar web templating systems that utilize markdown documents, converting them to html. Use when asked to \"convert markdown to html\", \"transform md to html\", \"render markdown\", \"generate html from markdown\", or when working with .md files and/or web a templating system that converts markdown to HTML output. Supports CLI and Node.js workflows with GFM, CommonMark, and standard Markdown flavors."},"skills_sh_url":"https://skills.sh/github/awesome-copilot/markdown-to-html"},"updatedAt":"2026-05-18T18:52:16.213Z"}}