{"id":13565721,"url":"https://github.com/show-docs/remark-docusaurus","last_synced_at":"2025-07-12T16:11:37.554Z","repository":{"id":57748570,"uuid":"523553025","full_name":"show-docs/remark-docusaurus","owner":"show-docs","description":"Remark plugin for docusaurus features.","archived":false,"fork":false,"pushed_at":"2024-11-19T03:14:02.000Z","size":1135,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-30T06:24:56.439Z","etag":null,"topics":["docusaurus","markdown","remark"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/remark-docusaurus","language":"JavaScript","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/show-docs.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-11T01:51:48.000Z","updated_at":"2025-03-11T22:28:49.000Z","dependencies_parsed_at":"2022-08-26T07:20:23.143Z","dependency_job_id":"ff001f5b-6270-4724-98e7-061dd3abde9f","html_url":"https://github.com/show-docs/remark-docusaurus","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"0902b3311cdc285106de3c7d9013e240335459a5"},"previous_names":["show-docs/remark-docusaurus","nice-move/remark-docusaurus"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/show-docs/remark-docusaurus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/show-docs%2Fremark-docusaurus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/show-docs%2Fremark-docusaurus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/show-docs%2Fremark-docusaurus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/show-docs%2Fremark-docusaurus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/show-docs","download_url":"https://codeload.github.com/show-docs/remark-docusaurus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/show-docs%2Fremark-docusaurus/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265018272,"owners_count":23698648,"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":["docusaurus","markdown","remark"],"created_at":"2024-08-01T13:01:53.950Z","updated_at":"2025-07-12T16:11:37.087Z","avatar_url":"https://github.com/show-docs.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# remark-docusaurus\n\nRemark plugin for docusaurus features.\n\n[![npm][npm-badge]][npm-url]\n[![github][github-badge]][github-url]\n![node][node-badge]\n\n[npm-url]: https://www.npmjs.com/package/remark-docusaurus\n[npm-badge]: https://img.shields.io/npm/v/remark-docusaurus.svg?style=flat-square\u0026logo=npm\n[github-url]: https://github.com/nice-move/remark-docusaurus\n[github-badge]: https://img.shields.io/npm/l/remark-docusaurus.svg?style=flat-square\u0026colorB=blue\u0026logo=github\n[node-badge]: https://img.shields.io/node/v/remark-docusaurus.svg?style=flat-square\u0026colorB=green\u0026logo=node.js\n\n## Installation\n\n```bash\nnpm install remark-docusaurus --save-dev\n```\n\n## Usage\n\n```mjs\n// docusaurus.config.mjs\nimport {\n  autoTabs,\n  docCardList,\n  draftSAdmonition,\n  svgToObject\n} from 'remark-docusaurus';\n\nexport default {\n  presets: [\n    [\n      'classic',\n      {\n        docs: {\n          beforeDefaultRemarkPlugins: [\n            autoTabs,\n            docCardList,\n            draftSAdmonition,\n            svgToObject\n          ]\n        }\n      }\n    ]\n  ]\n};\n```\n\n### DocCardList\n\nTurn:\n\n```markdown\n# heading\n\n:docusaurus-doc-card-list\n\nfoo bar\n```\n\nInto:\n\n```markdown\nimport DocCardList from '@theme/DocCardList';\n\n# heading\n\n\u003cDocCardList /\u003e\n\nfoo bar\n```\n\n### AutoTabs\n\n#### Options.labels\n\n- type: `object`\n- default: {}\n- description: Will merge with default presets\n\nTurn:\n\n````markdown\n```js tab\n\n```\n````\n\nInto:\n\n````md\nimport Tabs from '@theme/Tabs';\nimport TabItem from '@theme/TabItem';\n\n\u003cTabs\u003e\n  \u003cTabItem label=\"JavaScript\"\u003e\n  ```js tab\n  ```\n  \u003c/TabItem\u003e\n\u003c/Tabs\u003e\n````\n\n## Tips\n\nThis plugin only compatible with `docusaurus@3/remark@^13+/mdx@3+`.\n\n## Related\n\n- [markdown-code-block-meta](https://github.com/nice-move/markdown-code-block-meta)\n- [rehype-extended-table](https://github.com/nice-move/rehype-extended-table)\n- [remark-code-example](https://github.com/nice-move/remark-code-example)\n- [remark-kroki](https://github.com/nice-move/remark-kroki)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshow-docs%2Fremark-docusaurus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshow-docs%2Fremark-docusaurus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshow-docs%2Fremark-docusaurus/lists"}