{"id":16009564,"url":"https://github.com/afnanenayet/mdfmt-deprecated","last_synced_at":"2026-02-08T19:34:53.812Z","repository":{"id":79267279,"uuid":"198116661","full_name":"afnanenayet/mdfmt-deprecated","owner":"afnanenayet","description":"The original rust prototype","archived":false,"fork":false,"pushed_at":"2023-03-28T14:42:32.000Z","size":115,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-20T18:53:23.862Z","etag":null,"topics":["formatter","markdown","parser","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/afnanenayet.png","metadata":{"files":{"readme":"docs/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}},"created_at":"2019-07-21T23:53:19.000Z","updated_at":"2019-11-21T14:05:28.000Z","dependencies_parsed_at":"2024-10-27T16:14:09.991Z","dependency_job_id":"38802074-c36f-4c53-b3ca-f7a0b86929e1","html_url":"https://github.com/afnanenayet/mdfmt-deprecated","commit_stats":{"total_commits":68,"total_committers":2,"mean_commits":34.0,"dds":"0.014705882352941124","last_synced_commit":"0f10b4676a651fe12d5e7cf89e22358dccd84610"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/afnanenayet/mdfmt-deprecated","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afnanenayet%2Fmdfmt-deprecated","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afnanenayet%2Fmdfmt-deprecated/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afnanenayet%2Fmdfmt-deprecated/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afnanenayet%2Fmdfmt-deprecated/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/afnanenayet","download_url":"https://codeload.github.com/afnanenayet/mdfmt-deprecated/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afnanenayet%2Fmdfmt-deprecated/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29240704,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T18:06:38.086Z","status":"ssl_error","status_checked_at":"2026-02-08T18:06:09.124Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["formatter","markdown","parser","rust"],"created_at":"2024-10-08T13:02:56.297Z","updated_at":"2026-02-08T19:34:53.796Z","avatar_url":"https://github.com/afnanenayet.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mdfmt\n\n[![Build Status](https://dev.azure.com/afnanenayet/mdformat/_apis/build/status/afnanenayet.mdformat?branchName=master)](https://dev.azure.com/afnanenayet/mdformat/_build/latest?definitionId=5\u0026branchName=master)\n\n## Synopsis\n\nThis is a Markdown formatting tool that takes valid markdown files and outputs\nwell formatted Markdown files. It uses the\n[comrak](https://github.com/kivikakk/comrak) parsing library to create an AST\nfrom your markdown file, then formats as necessary.\n\nExample input:\n\n```\n# test\n\nAnd on the first day, God created Markdown files and let us run wild. People wrote markdown files with no regard for line widths and whatnot.\n\n* Even with lists, people write toooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo much\n    * Let's add some depth to this list\n\nAnd why not a page break?\n\n---\n* second list\n[link](example.com)\n\nI hate indented code blocks by the way, or really anything that depends on whitespace.\n\n    #include \"stdio.h\"\n\n    int main(void) {\n        return 0;\n    }\n```\n\nOutput:\n\n    # test\n\n    And on the first day, God created Markdown files and let us run wild. People\n    wrote markdown files with no regard for line widths and whatnot.\n\n    * Even with lists, people write\n      toooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo\n      much\n        * Let’s add some depth to this list\n\n    And why not a page break?\n\n    ---\n\n    * second list [link](example.com)\n\n    I hate indented code blocks by the way, or really anything that depends on\n    whitespace.\n\n    ```\n    #include \"stdio.h\"\n\n    int main(void) {\n        return 0;\n    }\n\n    ```\n\n_NOTE: This formatter is alpha stage software and not all markdown elements properly\nwork with the formatter._\n\n## Configuration\n\nThere are several options you can configure when using this tool.\n\nOptions:\n\n* Max line width (`line-width`): The maximum allowed line width for the output\n  file. Defaults to 80.\n* List delimiter (`list-delim`): The symbol used to denote a list (either `-`\n  or `*`). Defaults to `*`.\n* Indent width (`indent-width`): How many spaces to use for indentation.\n  Defaults to 4.\n\n## Development\n\nThis app is tested against Rust stable. You can build it using Cargo.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafnanenayet%2Fmdfmt-deprecated","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fafnanenayet%2Fmdfmt-deprecated","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafnanenayet%2Fmdfmt-deprecated/lists"}