{"id":21130544,"url":"https://github.com/arguablykomodo/deno_rusty_markdown","last_synced_at":"2025-08-18T18:04:37.686Z","repository":{"id":57675386,"uuid":"290643572","full_name":"arguablykomodo/deno_rusty_markdown","owner":"arguablykomodo","description":"Deno bindings for pulldown-cmark, a CommonMark-compliant Markdown parser made in Rust, compiled to WebAssembly.","archived":false,"fork":false,"pushed_at":"2022-01-23T20:12:37.000Z","size":1044,"stargazers_count":12,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-09T20:45:37.552Z","etag":null,"topics":["deno","markdown","rust","webassembly"],"latest_commit_sha":null,"homepage":"https://deno.land/x/rusty_markdown","language":"Rust","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/arguablykomodo.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":"2020-08-27T01:27:23.000Z","updated_at":"2025-06-25T16:13:31.000Z","dependencies_parsed_at":"2022-09-26T18:11:26.821Z","dependency_job_id":null,"html_url":"https://github.com/arguablykomodo/deno_rusty_markdown","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/arguablykomodo/deno_rusty_markdown","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arguablykomodo%2Fdeno_rusty_markdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arguablykomodo%2Fdeno_rusty_markdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arguablykomodo%2Fdeno_rusty_markdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arguablykomodo%2Fdeno_rusty_markdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arguablykomodo","download_url":"https://codeload.github.com/arguablykomodo/deno_rusty_markdown/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arguablykomodo%2Fdeno_rusty_markdown/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271035378,"owners_count":24688396,"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","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["deno","markdown","rust","webassembly"],"created_at":"2024-11-20T05:34:52.404Z","updated_at":"2025-08-18T18:04:37.651Z","avatar_url":"https://github.com/arguablykomodo.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `rusty_markdown`\n\nDeno bindings for [`pulldown-cmark`][1], a CommonMark-compliant Markdown parser\nmade in Rust, compiled to WebAssembly.\n\n## Example\n\n```ts\nimport { html, tokens } from \"https://deno.land/x/rusty_markdown/mod.ts\";\n\nconst tokenized = tokens(\"~~Goodbye~~ Hello **World**!\", { strikethrough: true }));\nconsole.log(tokenized);\n// [\n//   { type: \"start\", tag: \"paragraph\" },\n//   { type: \"start\", tag: \"strikethrough\" },\n//   { type: \"text\", content: \"Goodbye\" },\n//   { type: \"end\", tag: \"strikethrough\" },\n//   { type: \"text\", content: \" Hello \" },\n//   { type: \"start\", tag: \"strong\" },\n//   { type: \"text\", content: \"World\" },\n//   { type: \"end\", tag: \"strong\" },\n//   { type: \"text\", content: \"!\" },\n//   { type: \"end\", tag: \"paragraph\" }\n// ]\n\nconst rendered = html(tokenized);\nconsole.log(html);\n// \u003cp\u003e\u003cdel\u003eGoodbye\u003c/del\u003e Hello \u003cstrong\u003eWorld\u003c/strong\u003e!\u003c/p\u003e\n```\n\n## Repo Structure\n\nThe files in the `wasm` directory are generated by `build.ts`, and contain the\nwebassembly code, compressed and encoded into base64, alongside boilerplate js\ngenerated by `wasm-bindgen` for interacting with it. If you want to build it\nyourself, you will need to make sure you have `wasm-bindgen-cli` installed, and\nyou are using the same version as the one in `Cargo.toml`.\n\n[1]:https://github.com/raphlinus/pulldown-cmark\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farguablykomodo%2Fdeno_rusty_markdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farguablykomodo%2Fdeno_rusty_markdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farguablykomodo%2Fdeno_rusty_markdown/lists"}