{"id":26228933,"url":"https://github.com/thunderpoot/macchiato","last_synced_at":"2026-06-10T16:31:20.609Z","repository":{"id":267697041,"uuid":"902080194","full_name":"thunderpoot/macchiato","owner":"thunderpoot","description":"Yet another Markdown renderer but this one extends standard Markdown with additional features, offering enhanced functionality and flexibility for content creators","archived":false,"fork":false,"pushed_at":"2024-12-11T21:48:51.000Z","size":155,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T21:45:27.766Z","etag":null,"topics":["markdown","markdown-converter","markdown-parser","markdown-to-html"],"latest_commit_sha":null,"homepage":"","language":"Go","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/thunderpoot.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}},"created_at":"2024-12-11T21:40:55.000Z","updated_at":"2025-01-14T18:04:46.000Z","dependencies_parsed_at":"2024-12-11T22:39:23.449Z","dependency_job_id":null,"html_url":"https://github.com/thunderpoot/macchiato","commit_stats":null,"previous_names":["thunderpoot/macchiato"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thunderpoot/macchiato","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thunderpoot%2Fmacchiato","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thunderpoot%2Fmacchiato/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thunderpoot%2Fmacchiato/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thunderpoot%2Fmacchiato/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thunderpoot","download_url":"https://codeload.github.com/thunderpoot/macchiato/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thunderpoot%2Fmacchiato/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34161283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["markdown","markdown-converter","markdown-parser","markdown-to-html"],"created_at":"2025-03-12T21:34:34.080Z","updated_at":"2026-06-10T16:31:20.594Z","avatar_url":"https://github.com/thunderpoot.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Macchiato\n\n![logo](macchiato-logo.webp)\n\n![Go](https://img.shields.io/badge/go-%2300ADD8.svg?style=for-the-badge\u0026logo=go\u0026logoColor=white)\n\n**Macchiato** is a feature-packed Markdown-to-HTML converter written in Go designed to make your documents shine. Create blog posts, documentation, or just explore the magic of Markdown. Macchiato transforms your text into elegant, web-ready HTML.\n\nNearly everyone has written a Markdown converter at some point. This project started as a tool for a very specific purpose, but it turned out surprisingly well, so I decided to share it here.\n\n## 🚀 Features\n- **Intuitive Markdown Parsing**: Supports the stuff you'd imagine it supports, like headings, bold text, italics, links, images, code blocks, but also some other stuff.\n- **Customisable CSS Styling**: Specify your CSS styles with the `--style` option or let Macchiato use its default style.\n- **Footnotes and Highlights**: Easily add footnotes and highlighted text to your documents.\n- **Dynamic Lists and Tables**: Supports ordered and unordered lists, as well as Markdown tables, obviously.\n- **Code Syntax Highlighting**: Formatted code blocks with a copy button, (powered by [Prism](https://prismjs.com/)†.)\n- **Extensible HTML Template**: Use the `main.html` template to customise the look of your output.\n\n\u003csub\u003e_† Feel free to use some other highlighter, just edit the `main.html` template file._\u003c/sub\u003e\n\n## Basic Usage\n\n```bash\ngo run macchiato.go \u003cinput_file\u003e [output_file]\n```\n\n- `\u003cinput_file\u003e`: Path to your Markdown file.\n- `[output_file]`: (Optional) Path to save the resulting HTML. If not specified, the HTML is printed to stdout.\n\n### With Custom Styles\n\n```\ngo run macchiato.go --style=\u003ccss_file\u003e \u003cinput_file\u003e [output_file]\n```\n\n\n## Markdown Features Supported\n\n-   Headings: `#`, `##`, `###`, etc.\n-   Text Formatting: Bold (`**text**`), Italics (`*text*`), Strikethrough (`~~text~~`).\n-   Links and Images: `[Link](url)` and `![Alt Text](image_url)`.\n-   Lists: Ordered (`1. Item`) and Unordered (`- Item`).\n-   Code Blocks: Indented or fenced with \\`\\`\\`.\n-   Tables: Markdown table syntax with headers and rows.\n-   Footnotes: `[Text][^1]` with `[^1]`: Footnote text.\n-   Custom Containers: `:::` note for callout boxes.\n\n\n## License\n\nThis project is licensed under the MIT License. Use it freely, modify it, and share it with others.\n\n\n## Contributors\n\nContributions and feedback are always welcome.\n\n## References\n\n- [Markdown on Wikipedia](https://en.wikipedia.org/wiki/Markdown)\n- [RFC 7764](https://datatracker.ietf.org/doc/html/rfc7764.html)\n- [RFC 7763](https://datatracker.ietf.org/doc/html/rfc7763.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthunderpoot%2Fmacchiato","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthunderpoot%2Fmacchiato","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthunderpoot%2Fmacchiato/lists"}