{"id":13686660,"url":"https://github.com/mmark-md/flycheck-mmark","last_synced_at":"2025-06-15T08:03:49.424Z","repository":{"id":87552877,"uuid":"116976967","full_name":"mmark-md/flycheck-mmark","owner":"mmark-md","description":"Flycheck checker for the MMark markdown processor","archived":false,"fork":false,"pushed_at":"2025-03-12T12:31:51.000Z","size":25,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-30T02:38:46.087Z","etag":null,"topics":["emacs","flycheck","markdown","mmark"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","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/mmark-md.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2018-01-10T15:43:44.000Z","updated_at":"2025-03-12T12:31:48.000Z","dependencies_parsed_at":"2024-03-11T23:33:03.838Z","dependency_job_id":"30bba707-45ea-4bab-8788-687a2b69dbf5","html_url":"https://github.com/mmark-md/flycheck-mmark","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mmark-md/flycheck-mmark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmark-md%2Fflycheck-mmark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmark-md%2Fflycheck-mmark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmark-md%2Fflycheck-mmark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmark-md%2Fflycheck-mmark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mmark-md","download_url":"https://codeload.github.com/mmark-md/flycheck-mmark/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmark-md%2Fflycheck-mmark/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259942758,"owners_count":22935325,"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":["emacs","flycheck","markdown","mmark"],"created_at":"2024-08-02T15:00:37.006Z","updated_at":"2025-06-15T08:03:49.403Z","avatar_url":"https://github.com/mmark-md.png","language":"Emacs Lisp","funding_links":[],"categories":["Emacs Lisp"],"sub_categories":[],"readme":"# Flycheck support for MMark\n\n[![License GPL 3](https://img.shields.io/badge/license-GPL_3-green.svg)](http://www.gnu.org/licenses/gpl-3.0.txt)\n[![MELPA](https://melpa.org/packages/flycheck-mmark-badge.svg)](https://melpa.org/#/flycheck-mmark)\n[![CI](https://github.com/mmark-md/flycheck-mmark/actions/workflows/ci.yaml/badge.svg)](https://github.com/mmark-md/flycheck-mmark/actions/workflows/ci.yaml)\n\nThis package provides a [Flycheck](http://www.flycheck.org) checker for the\n[MMark](https://github.com/mmark-md/mmark) markdown processor.\n\n## Installation\n\nThe package is available via MELPA, so you can just type `M-x\npackage-install RET flycheck-mmark RET`.\n\nIf you would like to install the package manually, download or clone it and\nput on Emacs' `load-path`. Then you can require it in your init file like\nthis:\n\n```emacs-lisp\n(require 'flycheck-mmark)\n```\n\n## Usage\n\nFirst of all, build the [`mmark-cli`](https://github.com/mmark-md/mmark-cli)\nexecutable and place it on your `PATH`. The easiest way to do that is\ncurrently the following:\n\n```\n$ git clone https://github.com/mmark-md/mmark-cli.git mmark-cli\nCloning into 'mmark-cli'...\nremote: Counting objects: 63, done.\nremote: Compressing objects: 100% (36/36), done.\nremote: Total 63 (delta 29), reused 51 (delta 17), pack-reused 0\nUnpacking objects: 100% (63/63), done.\n$ cd mmark-cli\n$ stack build --copy-bins\n\u003cSNIP … SNIP\u003e\nCopied executables to /home/mark/.local/bin:\n- mmark\n$ mmark --version\nmmark 0.0.1.0 master e60cc92b88e0069ce296d09ef30feecef83fa03e\nusing mmark     (library) 0.0.5.0\nusing mmark-ext (library) 0.1.0.0\n```\n\nFor this you'll need\n[Stack](https://docs.haskellstack.org/en/stable/README/), follow the link if\nyou wish to see the installation instructions.\n\nNext, add the following to your configuration file:\n\n```emacs-lisp\n(eval-after-load 'flycheck\n  '(add-hook 'flycheck-mode-hook #'flycheck-mmark-setup))\n```\n\nAlso make sure that you enable the `flycheck-mode` minor mode itself in the\n`markdown-mode`, this can be done for example like this:\n\n```emacs-lisp\n(add-hook 'markdown-mode-hook #'flycheck-mode)\n```\n\n## License\n\nCopyright © 2018–present Mark Karpov\n\nDistributed under GNU GPL, version 3.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmmark-md%2Fflycheck-mmark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmmark-md%2Fflycheck-mmark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmmark-md%2Fflycheck-mmark/lists"}