{"id":15396868,"url":"https://github.com/z0al/gfmc","last_synced_at":"2026-04-17T12:32:03.440Z","repository":{"id":97603356,"uuid":"107100923","full_name":"z0al/gfmc","owner":"z0al","description":"JavaScript pure implementation of GitHub Flavored Markdown (GFM) specification :octocat: ","archived":false,"fork":false,"pushed_at":"2017-11-25T11:28:56.000Z","size":233,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T05:35:20.826Z","etag":null,"topics":["compiler","gfm","markdown","nodejs","rollup"],"latest_commit_sha":null,"homepage":"","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/z0al.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2017-10-16T08:39:14.000Z","updated_at":"2023-01-29T21:38:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"178322d8-22eb-435e-9750-8aecf69f1d41","html_url":"https://github.com/z0al/gfmc","commit_stats":{"total_commits":68,"total_committers":1,"mean_commits":68.0,"dds":0.0,"last_synced_commit":"16aa2c8570270d238c54be963f987ab0e8fdc065"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/z0al/gfmc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z0al%2Fgfmc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z0al%2Fgfmc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z0al%2Fgfmc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z0al%2Fgfmc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/z0al","download_url":"https://codeload.github.com/z0al/gfmc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z0al%2Fgfmc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31929552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:35:34.458Z","status":"ssl_error","status_checked_at":"2026-04-17T10:35:09.472Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["compiler","gfm","markdown","nodejs","rollup"],"created_at":"2024-10-01T15:35:11.276Z","updated_at":"2026-04-17T12:32:03.422Z","avatar_url":"https://github.com/z0al.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GFM Compiler\n\n[![Travis](https://img.shields.io/travis/ahmed-taj/gfmc.svg)](https://travis-ci.org/ahmed-taj/gfmc)\n[![npm](https://img.shields.io/npm/v/gfmc.svg)](https://www.npmjs.com/package/gfmc)\n[![All Contributors](https://img.shields.io/badge/all_contributors-2-brightgreen.svg?style=flat-square)](#contributors)\n\nJavaScript pure implementation of [GitHub Flavored Markdown](https://github.github.com/gfm) (GFM) specification.\n\n## Why?\n\n- ✅ %100 Specification compliance\n- 🚫 No dependencies\n- 🚀 Works in Node.js, and Browser\n\n## Installation\n\n**NOTE:** I haven't published the npm package yet. It will automatically get published by Travis when all [spec](./test/spec.ts) tests are passing\n```sh\n$ npm add --save gfmc\n```\n\n## Usage\n\n```javascript\nimport gfmc from('gfmc')\n\nconst markdown = '# This is title  '\n\nconsole.log(gfmc(markdown))\n// =\u003e\n// \u003ch1\u003eThis is title\u003c/h1\u003e\n```\n\n## Options\n\n```typescript\ngfmc(src: string, options: Object)\n```\n\n| Option            | Description                                                                           |\n| :---------------- | :------------------------------------------------------------------------------------ |\n| renderer {Object} | A custom Renderer to be used by the Parser (default: [HTMLRenderer](./src/render.ts)) |\n\n## Progress\n\nThe project is still in active development and currently doesn't support:\n\n- Fenced code blocks\n- HTML blocks\n- Link reference definitions\n- Tables \n- Block quotes\n- Lists\n- Task lists\n- Backslash escapes\n- Code spans\n- Emphasis and strong emphasis\n- Strikethrough \n- Links\n- Images\n- Autolinks \n- Raw HTML\n- Hard line breaks\n- Soft line breaks\n- Textual content\n\n## Contributors\n\nThanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n| [\u003cimg src=\"https://avatars1.githubusercontent.com/u/12673605?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003eAhmed T. Ali\u003c/sub\u003e](https://github.com/ahmed-taj)\u003cbr /\u003e[📝](#blog-ahmed-taj \"Blogposts\") [💻](https://github.com/ahmed-taj/gfmc/commits?author=ahmed-taj \"Code\") [📖](https://github.com/ahmed-taj/gfmc/commits?author=ahmed-taj \"Documentation\") [⚠️](https://github.com/ahmed-taj/gfmc/commits?author=ahmed-taj \"Tests\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/1915?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003eAshe Connor\u003c/sub\u003e](https://kivikakk.ee)\u003cbr /\u003e[💬](#question-kivikakk \"Answering Questions\") |\n| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!\n\n## Versioning\n\nWe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/ahmed-taj/gfmc/releases).\n\n## Like it?\n\nGive it a star(⭐️) 👆\n\n## License\n\nMIT © [Ahmed T. Ali](https://github.com/ahmed-taj)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz0al%2Fgfmc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz0al%2Fgfmc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz0al%2Fgfmc/lists"}