{"id":19953652,"url":"https://github.com/mkende/pmarkdown","last_synced_at":"2025-05-03T19:31:13.153Z","repository":{"id":230776825,"uuid":"736357323","full_name":"mkende/pmarkdown","owner":"mkende","description":"Very configurable Markdown processor supporting the CommonMark spec and many extensions.","archived":false,"fork":false,"pushed_at":"2025-04-16T21:38:33.000Z","size":484,"stargazers_count":5,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-17T09:22:05.898Z","etag":null,"topics":["cmark","cmark-gfm","commonmark","commonmark-extension","markdown","markdown-to-html"],"latest_commit_sha":null,"homepage":"","language":"Perl","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/mkende.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","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":"2023-12-27T17:13:39.000Z","updated_at":"2025-04-16T21:38:39.000Z","dependencies_parsed_at":"2024-04-10T16:47:22.261Z","dependency_job_id":"047110f5-cd62-42c2-854d-320f376578e9","html_url":"https://github.com/mkende/pmarkdown","commit_stats":null,"previous_names":["mkende/pmarkdown"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkende%2Fpmarkdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkende%2Fpmarkdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkende%2Fpmarkdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkende%2Fpmarkdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mkende","download_url":"https://codeload.github.com/mkende/pmarkdown/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252241984,"owners_count":21717085,"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","cmark-gfm","commonmark","commonmark-extension","markdown","markdown-to-html"],"created_at":"2024-11-13T01:17:10.959Z","updated_at":"2025-05-03T19:31:12.766Z","avatar_url":"https://github.com/mkende.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pmarkdown\n\nVery configurable Markdown processor supporting the CommonMark spec and many\nextensions.\n\n## Main features\n\nThis software supports the entire\n[`CommonMark` spec](https://spec.commonmark.org/0.31.2/) syntax, as well as all\n[GitHub Flavored Markdown (gfm) extensions](https://github.github.com/gfm/)\nsome more custom extensions. It also has compatibility with the\n[original Markdown syntax](https://daringfireball.net/projects/markdown/syntax).\n\nSee the [Syntax page](Syntax.md) for a full description of the default syntax\nsupported by `pmarkdown`. You can also\n[try it out online](https://dingus.mkdoc.io/) or compare it to other\nimplementations by using [Babelmark](https://babelmark.github.io/).\n\nThis program is based on the\n[Markdown::Perl](https://metacpan.org/pod/Markdown::Perl) library that can be\nused in standalone Perl programs.\n\n## Usage\n\nUsing `pmarkdown` is as simple as running the following command:\n\n```shell\npmarkdown \u003c input.md \u003e output.html\n```\n\nYou can read about all the command line options in the\n[`pmarkdown` documentation](https://metacpan.org/pod/pmarkdown).\n\n## Installation\n\n### Pre-compiled binaries for Windows and Linux\n\nYou can download portable versions of `pmarkdown` for Windows and Linux on the\n[releases page](https://github.com/mkende/pmarkdown/releases).\n\n### Installation from the Perl package manager\n\nTo install `pmarkdown` you need Perl (which is already installed on most Linux\ndistributions) and you need the `cpanm` Perl package manager. In addition, the\n`perl-doc` program is optional but will improve the display of the program\ndocumentation. You can usually get them with one of these commands:\n\n```shell\n# On Debian, Ubuntu, Mint, etc.\nsudo apt-get install perl cpanminus perl-doc\n\n# On Red Hat, Fedora, CentOS, etc.\nsudo yum install perl perl-App-cpanminus perl-doc\n```\n\nThen run the following to install `pmarkdown`:\n\n```shell\nsudo cpanm App::pmarkdown -n -L /usr/local --man-pages --install-args 'DESTINSTALLBIN=/usr/local/bin'\n```\n\n### Installation from the Git sources\n\nTo install `pmarkdown` you need Perl (which is already installed on most Linux\ndistributions) and you need the `cpanm` Perl package manager. In addition, the\n`perl-doc` program is optional but will improve the display of the program\ndocumentation. You can usually get them with one of these commands:\n\n```shell\n# On Debian, Ubuntu, Mint, etc.\nsudo apt-get install perl cpanminus perl-doc\n\n# On Red Hat, Fedora, CentOS, etc.\nsudo yum install perl perl-App-cpanminus perl-doc\n```\n\nThen run the following command to install `pmarkdown` (note that you do not need\nto initialize the git submodules):\n\n```shell\ngit clone https://github.com/mkende/pmarkdown.git\ncd pmarkdown\ncpanm --notest --with-configure --installdeps .\nperl Makefile.PL\nmake\nsudo make install\n```\n\nNote that, with this installation method, you might need to reinstall the\nprogram each time your system Perl is updated. So the methods above are\nrecommended.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkende%2Fpmarkdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmkende%2Fpmarkdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkende%2Fpmarkdown/lists"}