{"id":25270130,"url":"https://github.com/vikiboss/md2html","last_synced_at":"2026-05-15T23:13:15.436Z","repository":{"id":272773851,"uuid":"917703370","full_name":"vikiboss/md2html","owner":"vikiboss","description":"🌈 A powerful md2html (Markdown to HTML) converter service, support GFM.","archived":false,"fork":false,"pushed_at":"2025-02-11T02:04:30.000Z","size":111,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-10T21:26:25.603Z","etag":null,"topics":["html","markdown","md2html","render"],"latest_commit_sha":null,"homepage":"https://md-to-html.deno.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vikiboss.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-16T13:47:46.000Z","updated_at":"2025-04-27T04:01:34.000Z","dependencies_parsed_at":"2025-01-16T15:33:59.428Z","dependency_job_id":"ccc1999e-d1e5-4166-916e-fa9a3cc17204","html_url":"https://github.com/vikiboss/md2html","commit_stats":null,"previous_names":["vikiboss/md2html"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vikiboss/md2html","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikiboss%2Fmd2html","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikiboss%2Fmd2html/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikiboss%2Fmd2html/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikiboss%2Fmd2html/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vikiboss","download_url":"https://codeload.github.com/vikiboss/md2html/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikiboss%2Fmd2html/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33082990,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["html","markdown","md2html","render"],"created_at":"2025-02-12T11:28:32.573Z","updated_at":"2026-05-15T23:13:15.419Z","avatar_url":"https://github.com/vikiboss.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# md2html (Markdown (GFM) to HTML API)\n\n\u003e [!NOTE]\n\u003e This project is under active development. Feel free to [open an issue](https://github.com/vikiboss/md2html/issues) for bugs or feature requests.\n\nA powerful **md2html** (Markdown to HTML) converter service that transforms your Markdown content (GFM) into beautiful, feature-rich HTML. Built with modern technologies and support for advanced syntax features.\n\n## 🚀 Quick Start\n\n### Installation\n\n```bash\n# Using npm\nnpm install\n\n# Start development server\nnpm run dev\n```\n\n### Basic Usage\n\n```typescript\n// Client-side usage\nconst response = await fetch('https://localhost:3000', {\n  method: 'POST',\n  headers: {\n    'Content-Type': 'text/markdown'\n  },\n  body: '## Hello, World!'\n});\n\nconst html = await response.text();\n```\n\n## ✨ Features\n\n### Core Markdown Support\n- **Complete [GitHub Flavored Markdown](https://github.github.com/gfm/) (GFM)**\n  - Emoji Shortcodes: `:smile:` → 😄\n  - Smart Autolinks: URLs automatically convert to clickable links\n  - Syntax-highlighted Code Blocks\n  - Tables with alignment options\n  - Task Lists: `- [x]` (checked) and `- [ ]` (unchecked)\n  - Strikethrough: `~~text~~`\n  - Extended Table Features\n\n### Enhanced Formatting\n\n#### GitHub-Style Alerts\n\n\u003e [!NOTE]\n\u003e This is a note\n\n\u003e [!TIP]\n\u003e This is a helpful tip\n\n\u003e [!IMPORTANT]\n\u003e Critical information\n\n\u003e [!WARNING]\n\u003e Warning message\n\n\u003e [!CAUTION]\n\u003e Proceed with caution\n\n```markdown\n\u003e [!NOTE]\n\u003e This is a note\n\n\u003e [!TIP]\n\u003e This is a helpful tip\n\n\u003e [!IMPORTANT]\n\u003e Critical information\n\n\u003e [!WARNING]\n\u003e Warning message\n\n\u003e [!CAUTION]\n\u003e Proceed with caution\n```\n\n#### Mathematical Expressions (KaTeX)\n\n- Display Math: `$$ ... $$` or `\\[ ... \\]`\n- Inline Math: `$ ... $`\n- Supports complex mathematical notations and equations\n- Fast rendering with KaTeX\n\n#### Advanced Code Blocks\n\nPowered by [Shiki](https://shiki.style/), featuring:\n\n- Rich syntax highlighting for 100+ languages\n- Multiple beautiful themes\n- Special annotations:\n  \n```typescript\nfunction hello() {\n  console.log('Hello World!'); // [!code focus]\n}\n```\n  \nAdvanced notation support:\n\n- Diff highlighting: `+` for additions, `-` for deletions\n- Line focusing: `// [!code focus]`\n- Line highlighting: `{1,3-5}`\n- Word highlighting: `/pattern/`\n- Error/Warning levels: `[!code error]`, `[!code warning]`\n\n### Additional Features\n\n- **Heading Anchors**: Automatically generated, hoverable link icons\n- **Footnotes**: Support for reference-style footnotes\n- **Table of Contents**: Auto-generated based on headings\n- **Responsive Design**: Looks great on all devices\n- **Custom Containers**: For special content blocks\n- **Image Optimization**: Lazy loading and size optimization\n\n## 📄 License\n\n[MIT](./license) License © 2025-PRESENT Viki\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikiboss%2Fmd2html","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvikiboss%2Fmd2html","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikiboss%2Fmd2html/lists"}