{"id":40003189,"url":"https://github.com/devgauravjatt/showmd","last_synced_at":"2026-01-19T02:02:49.326Z","repository":{"id":320836473,"uuid":"1083504794","full_name":"devgauravjatt/showmd","owner":"devgauravjatt","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-26T07:06:50.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-26T08:29:25.065Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devgauravjatt.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-26T06:43:54.000Z","updated_at":"2025-10-26T07:06:53.000Z","dependencies_parsed_at":"2025-10-26T08:29:36.468Z","dependency_job_id":"a02614f8-aa6f-4036-8f97-4079befdb24e","html_url":"https://github.com/devgauravjatt/showmd","commit_stats":null,"previous_names":["devgauravjatt/showmd"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/devgauravjatt/showmd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fshowmd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fshowmd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fshowmd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fshowmd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devgauravjatt","download_url":"https://codeload.github.com/devgauravjatt/showmd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fshowmd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28557784,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T00:46:33.223Z","status":"online","status_checked_at":"2026-01-19T02:00:08.049Z","response_time":67,"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":[],"created_at":"2026-01-19T02:02:33.167Z","updated_at":"2026-01-19T02:02:49.317Z","avatar_url":"https://github.com/devgauravjatt.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# showmd\n\nA fast and secure Markdown to HTML rendering tool built with Go. Uses [`gomarkdown/markdown`](https://github.com/gomarkdown/markdown) for parsing and [`bluemonday`](https://github.com/microcosm-cc/bluemonday) for secure HTML sanitization.\n\n## Features\n\n- 🚀 Fast Markdown to HTML conversion\n- 🔒 Secure HTML output with sanitization\n- 📦 Standalone binary - no dependencies needed\n- 🌍 Cross-platform support (Windows, Linux, macOS)\n\n## Quick Start\n\n```bash\nshowmd input.md\nmd show on http://localhost:4000\n```\n\n---\n\n## 📥 Installation\n\n### 📦 Step 1: Go to Releases Page\n\n1. Visit the [Releases page](https://github.com/devgauravjatt/showmd/releases)\n2. Download the latest release for your operating system\n\n### 🧩 Step 2: Download the correct binary\n\nDownload the appropriate file for your system:\n\n| OS      | Architecture | File                       |\n| ------- | ------------ | -------------------------- |\n| Windows | amd64        | `showmd_windows_amd64.exe` |\n| Linux   | arm64        | `showmd_linux_arm64`       |\n| macOS   | arm64        | `showmd_darwin_arm64`      |\n\n---\n\n### 🧱 Step 3: Rename the binary\n\nRename the downloaded file to just **`showmd`** for consistency.\n\n#### Windows:\n\n```powershell\nrename showmd_windows_amd64.exe showmd.exe\n```\n\n#### Linux / macOS:\n\n```bash\nmv showmd_linux_arm64 showmd\n# or\nmv showmd_darwin_arm64 showmd\n```\n\n---\n\n### ⚙️ Step 4: Make it executable (Linux / macOS only)\n\n```bash\nchmod +x showmd\n```\n\n---\n\n### 🌍 Step 5: Move it to a system PATH directory\n\n#### **Windows:**\n\n1. Move `showmd.exe` to a permanent location, e.g.\n   `C:\\Program Files\\showmd\\`\n2. Add that folder to your system PATH:\n\n   - Press **Win + S**, search **Environment Variables**\n   - Click **Edit the system environment variables**\n   - Click **Environment Variables…**\n   - Under **System variables**, select **Path → Edit → New**\n   - Add the path:\n\n     ```\n     C:\\Program Files\\showmd\n     ```\n\n   - Click **OK** to save everything.\n\n#### **Linux / macOS:**\n\nMove `showmd` to `/usr/local/bin` (or any PATH directory):\n\n```bash\nsudo mv showmd /usr/local/bin/\n```\n\n---\n\n### ✅ Step 6: Verify installation\n\nRun:\n\n```bash\nshowmd --version\n```\n\nIf it prints version info or help text, it's installed correctly.\n\n---\n\n## 🛠️ Building from Source\n\n### Prerequisites\n\n- Go 1.24.3 or later\n- Node.js with pnpm (v10.12.2+)\n\n### Build Steps\n\n```bash\n# Clone the repository\ngit clone \u003crepository-url\u003e\ncd go-markdown-render\n\n# Install Node.js dependencies\npnpm install\n\n# Build the binary\nnode build.mjs\n```\n\nThe compiled binary will be available in the output directory.\n\n---\n\n## 📖 Usage Examples\n\n### Basic Conversion\n\n```bash\n# Convert markdown from stdin\necho \"**Bold text** and *italic*\" | showmd\n```\n\n### File Conversion\n\n```bash\n# Convert a markdown file\nshowmd README.md\n\n# Save to HTML file\nshowmd README.md \u003e README.html\n```\n\n### Pipe from other commands\n\n```bash\n# Convert curl output\ncurl https://raw.githubusercontent.com/user/repo/main/README.md | showmd\n```\n\n---\n\n## 🔧 Technical Details\n\n- **Language:** Go 1.24.3\n- **Markdown Parser:** [gomarkdown/markdown](https://github.com/gomarkdown/markdown)\n- **HTML Sanitizer:** [bluemonday](https://github.com/microcosm-cc/bluemonday)\n- **Build System:** Node.js with zx and execa\n\n---\n\n## 📝 License\n\nSee LICENSE file for details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgauravjatt%2Fshowmd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgauravjatt%2Fshowmd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgauravjatt%2Fshowmd/lists"}