{"id":15445225,"url":"https://github.com/jhermann/gfm-cmark-py","last_synced_at":"2026-04-29T00:05:23.212Z","repository":{"id":57434146,"uuid":"85059524","full_name":"jhermann/gfm-cmark-py","owner":"jhermann","description":"A Python wrapper for GitHub's fork of 'cmark', supporting GFM extensions","archived":false,"fork":false,"pushed_at":"2017-03-16T22:43:11.000Z","size":28,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-02T08:45:31.603Z","etag":null,"topics":["cmark","ctypes","debian-packaging","gfm","markdown","markup","wrapper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jhermann.png","metadata":{"files":{"readme":"README.rst","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}},"created_at":"2017-03-15T10:29:20.000Z","updated_at":"2018-07-19T00:47:41.000Z","dependencies_parsed_at":"2022-08-27T21:11:18.335Z","dependency_job_id":null,"html_url":"https://github.com/jhermann/gfm-cmark-py","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fgfm-cmark-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fgfm-cmark-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fgfm-cmark-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fgfm-cmark-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jhermann","download_url":"https://codeload.github.com/jhermann/gfm-cmark-py/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245991585,"owners_count":20706129,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cmark","ctypes","debian-packaging","gfm","markdown","markup","wrapper"],"created_at":"2024-10-01T19:44:22.573Z","updated_at":"2026-04-29T00:05:23.171Z","avatar_url":"https://github.com/jhermann.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"gfm-cmark-py\n============\n\n |Travis CI|  |Coveralls|  |GitHub Issues|  |License|\n |Development Status|  |Latest Version|  |Download format|  |Downloads|\n\nA Python wrapper for `GitHub's fork of cmark`_, supporting `GFM`_\nextensions. ``cmark`` is a *CommonMark* parsing and rendering library\nwritten in C. This project also includes Debian packaging for it,\nto simplify deployment to platforms using APT.\n\n**THIS IS IN ALPHA STATUS!**\n\n.. contents:: **Contents**\n\n\n.. _setup-start:\n\nIntroduction\n------------\n\n**TODO**\n\nIt also features *Debian* packaging for the underlying ``cmark``\nlibrary, for easy installation on distros using APT.\n\n\nUsage\n-----\n\n**TODO**\n\n\nInstallation\n------------\n\n*gfm-cmark-py* can be installed via ``pip install gfm-cmark-py`` as usual,\nsee `releases \u003chttps://github.com/jhermann/gfm-cmark-py/releases\u003e`_ for an overview of available versions.\nTo get a bleeding-edge version from source, use these commands::\n\n    repo=\"jhermann/gfm-cmark-py\"\n    pip install -r \"https://raw.githubusercontent.com/$repo/master/requirements.txt\"\n    pip install -UI -e \"git+https://github.com/$repo.git#egg=${repo#*/}\"\n\nAs a developer, to create a working directory for this project, call these commands::\n\n    git clone \"https://github.com/jhermann/gfm-cmark-py.git\"\n    cd \"gfm-cmark-py\"\n    command . .env --yes --develop  # add '--virtualenv /usr/bin/virtualenv' for Python2\n    invoke build check\n\nYou might also need to follow some\n`setup procedures \u003chttps://py-generic-project.readthedocs.io/en/latest/installing.html#quick-setup\u003e`_\nto make the necessary basic commands available on *Linux*, *Mac OS X*, and *Windows*.\n\n\nBuilding the Debian Package\n---------------------------\n\nCall these commands::\n\n    version=0.27.1\n    curl -sLSo \"cmark-gfm_$version.orig.tar.gz\" \"https://github.com/github/cmark/archive/$version.tar.gz\"\n    cd cmark-gfm\n\n    # The \"debian/\" directorxy wa sinitially made using…\n    #   dh_make -f \"cmark-gfm_$version.orig.tar.gz\" --packagename cmark-gfm_$version -c bsd --multi\n    dpkg-buildpackage -uc -us\n\n    dpkg-deb -I ../cmark-gfm_$version-*_amd64.deb\n    dpkg-deb -I ../libcmark-gfm_$version-*_amd64.deb\n\n\n\nRelated Projects\n----------------\n\n-  `github/cmark`_ – GitHub's fork of cmark, supporting `GFM`_\n   extensions.\n-  `jgm/cmark`_ – *CommonMark* parsing and rendering library and program\n   in C.\n-  `rtfd/CommonMark-py`_ – Pure Python implementation of *CommonMark*.\n-  `cmark 0.26.1-1 source package`_ (Ubuntu Zesty)\n\n\n.. _GFM: https://github.github.com/gfm/\n.. _github/cmark: https://github.com/github/cmark\n.. _`GitHub's fork of cmark`: https://github.com/github/cmark\n.. _jgm/cmark: https://github.com/jgm/cmark\n.. _rtfd/CommonMark-py: https://github.com/rtfd/CommonMark-py\n.. _cmark 0.26.1-1 source package: https://launchpad.net/ubuntu/+source/cmark/0.26.1-1\n\n.. |Travis CI| image:: https://api.travis-ci.org/jhermann/gfm-cmark-py.svg\n    :target: https://travis-ci.org/jhermann/gfm-cmark-py\n.. |Coveralls| image:: https://img.shields.io/coveralls/jhermann/gfm-cmark-py.svg\n    :target: https://coveralls.io/r/jhermann/gfm-cmark-py\n.. |GitHub Issues| image:: https://img.shields.io/github/issues/jhermann/gfm-cmark-py.svg\n    :target: https://github.com/jhermann/gfm-cmark-py/issues\n.. |License| image:: https://img.shields.io/pypi/l/gfm-cmark-py.svg\n    :target: https://github.com/jhermann/gfm-cmark-py/blob/master/LICENSE\n.. |Development Status| image:: https://pypip.in/status/gfm-cmark-py/badge.svg\n    :target: https://pypi.python.org/pypi/gfm-cmark-py/\n.. |Latest Version| image:: https://img.shields.io/pypi/v/gfm-cmark-py.svg\n    :target: https://pypi.python.org/pypi/gfm-cmark-py/\n.. |Download format| image:: https://pypip.in/format/gfm-cmark-py/badge.svg\n    :target: https://pypi.python.org/pypi/gfm-cmark-py/\n.. |Downloads| image:: https://img.shields.io/pypi/dw/gfm-cmark-py.svg\n    :target: https://pypi.python.org/pypi/gfm-cmark-py/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhermann%2Fgfm-cmark-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjhermann%2Fgfm-cmark-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhermann%2Fgfm-cmark-py/lists"}