{"id":13714920,"url":"https://github.com/hoedown/hoedown","last_synced_at":"2025-05-07T03:31:02.380Z","repository":{"id":10689371,"uuid":"12930308","full_name":"hoedown/hoedown","owner":"hoedown","description":"Standards compliant, fast, secure markdown processing library in C","archived":false,"fork":true,"pushed_at":"2020-06-22T14:06:16.000Z","size":1455,"stargazers_count":966,"open_issues_count":63,"forks_count":120,"subscribers_count":43,"default_branch":"master","last_synced_at":"2025-04-17T03:39:06.063Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"vmg/sundown","license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hoedown.png","metadata":{"files":{"readme":"README.md","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":"2013-09-18T17:57:54.000Z","updated_at":"2025-04-10T01:14:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hoedown/hoedown","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoedown%2Fhoedown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoedown%2Fhoedown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoedown%2Fhoedown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoedown%2Fhoedown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hoedown","download_url":"https://codeload.github.com/hoedown/hoedown/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252806414,"owners_count":21807199,"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":[],"created_at":"2024-08-03T00:00:51.960Z","updated_at":"2025-05-07T03:31:01.348Z","avatar_url":"https://github.com/hoedown.png","language":"C","funding_links":[],"categories":["Utilities","C","Libraries","公用事业"],"sub_categories":["YAML","C"],"readme":"Hoedown\n=======\n\n[![Build Status](https://travis-ci.org/hoedown/hoedown.png?branch=master)](https://travis-ci.org/hoedown/hoedown)\n\n`Hoedown` is a revived fork of [Sundown](https://github.com/vmg/sundown),\nthe Markdown parser based on the original code of the\n[Upskirt library](http://fossil.instinctive.eu/libupskirt/index)\nby Natacha Porté.\n\nFeatures\n--------\n\n*\t**Fully standards compliant**\n\n\t`Hoedown` passes out of the box the official Markdown v1.0.0 and v1.0.3\n\ttest suites, and has been extensively tested with additional corner cases\n\tto make sure its output is as sane as possible at all times.\n\n*\t**Massive extension support**\n\n\t`Hoedown` has optional support for several (unofficial) Markdown extensions,\n\tsuch as non-strict emphasis, fenced code blocks, tables, autolinks,\n\tstrikethrough and more.\n\n*\t**UTF-8 aware**\n\n\t`Hoedown` is fully UTF-8 aware, both when parsing the source document and when\n\tgenerating the resulting (X)HTML code.\n\n*\t**Tested \u0026 Ready to be used on production**\n\n\t`Hoedown` has been extensively security audited, and includes protection against\n\tall possible DOS attacks (stack overflows, out of memory situations, malformed\n\tMarkdown syntax...).\n\n\tWe've worked very hard to make `Hoedown` never leak or crash under *any* input.\n\n\t**Warning**: `Hoedown` doesn't validate or post-process the HTML in Markdown documents.\n\tUnless you use `HTML_ESCAPE` or `HTML_SKIP`, you should strongly consider using a\n\tgood post-processor in conjunction with Hoedown to prevent client-side attacks.\n\n*\t**Customizable renderers**\n\n\t`Hoedown` is not stuck with XHTML output: the Markdown parser of the library\n\tis decoupled from the renderer, so it's trivial to extend the library with\n\tcustom renderers. A fully functional (X)HTML renderer is included.\n\n*\t**Optimized for speed**\n\n\t`Hoedown` is written in C, with a special emphasis on performance. When wrapped\n\ton a dynamic language such as Python or Ruby, it has shown to be up to 40\n\ttimes faster than other native alternatives.\n\n*\t**Zero-dependency**\n\n\t`Hoedown` is a zero-dependency library composed of some `.c` files and their\n\theaders. No dependencies, no bullshit. Only standard C99 that builds everywhere.\n\n*\t**Additional features**\n\n\t`Hoedown` comes with a fully functional implementation of SmartyPants,\n\ta separate autolinker, escaping utilities, buffers and stacks.\n\nBindings\n--------\n\nYou can see a community-maintained list of `Hoedown` bindings at\n[the wiki](https://github.com/hoedown/hoedown/wiki/Bindings). There is also a\n[migration guide](https://github.com/hoedown/hoedown/wiki/Migration-Guide)\navailable for authors of Sundown bindings.\n\nHelp us\n-------\n\n`Hoedown` is all about security. If you find a (potential) security vulnerability in the\nlibrary, or a way to make it crash through malicious input, please report it to us by\nemailing the private [Hoedown Security](mailto:hoedown-security@googlegroups.com)\nmailing list. The `Hoedown` security team will review the vulnerability and work with you\nto reproduce and resolve it.\n\nUnicode character handling\n--------------------------\n\nGiven that the Markdown spec makes no provision for Unicode character handling, `Hoedown`\ntakes a conservative approach towards deciding which extended characters trigger Markdown\nfeatures:\n\n*\tPunctuation characters outside of the U+007F codepoint are not handled as punctuation.\n\tThey are considered as normal, in-word characters for word-boundary checks.\n\n*\tWhitespace characters outside of the U+007F codepoint are not considered as\n\twhitespace. They are considered as normal, in-word characters for word-boundary checks.\n\nInstall\n-------\n\nJust typing `make` will build `Hoedown` into a dynamic library and create the `hoedown`\nand `smartypants` executables, which are command-line tools to render Markdown to HTML\nand perform SmartyPants, respectively.\n\nIf you are using [CocoaPods](http://cocoapods.org), just add the line `pod 'hoedown'` to your Podfile and call `pod install`.\n\nOr, if you prefer, you can just throw the files at `src` into your project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoedown%2Fhoedown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhoedown%2Fhoedown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoedown%2Fhoedown/lists"}