\n \u003Ca href=\"#alt-slug\">#\u003C/a>\n\u003C/h1>\n```\n\n\u003Cdetails>\u003Csummary>Current behavior\u003C/summary>\n\u003Cp>\n\n`# ` should result in \n```html\n\u003Ch1 id>\n \u003Cimg src=\"path\" alt=\"alt\" />\n \u003Ca href=\"#\">#\u003C/a>\n\u003C/h1>\n```\n\n\u003C/p>\n\u003C/details> \n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n(should work for `\u003Ch\u003C2-7>>` too)\n\n### Validations\n\n- [x] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [x] Read the [docs](https://vitepress.dev).\n- [x] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [x] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[],4561,"Feature | Image as headline should use alt slug as id","2025-02-23T04:43:39Z","https://github.com/vuejs/vitepress/issues/4561",0.7508854,{"description":2943,"labels":2944,"number":2945,"owner":2875,"repository":2876,"state":2910,"title":2946,"updated_at":2947,"url":2948,"score":2949},"### Describe the bug\r\n\r\nWhen building a project from scratch following https://vitepress.vuejs.org/guide/getting-started the `development` mode is dysfunctional.\r\n\r\nThe `vitepress` command comes through but the server is not responsive. The port is not open.\r\n\r\nIt would be great to have more verbosity, like `--debug` flag.\r\n\r\n`vitepress build` and `preview` works like a charm!\r\n\r\n### Reproduction\r\n\r\nFollow the instructions, start dev.\r\n\r\n### Expected behavior\r\n\r\nServe the page with HRM.\r\n\r\n### System Info\r\n\r\n```shell\r\nSystem:\r\n OS: Linux 5.10 Debian GNU/Linux 11 (bullseye) 11 (bullseye)\r\n CPU: (8) x64 Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz\r\n Memory: 315.41 MB / 7.68 GB\r\n Container: Yes\r\n Shell: 3.1.2 - /usr/bin/fish\r\n Binaries:\r\n Node: 16.13.1 - ~/.nvm/versions/node/v16.13.1/bin/node\r\n Yarn: 1.22.17 - ~/.nvm/versions/node/v16.13.1/bin/yarn\r\n npm: 8.1.2 - ~/.nvm/versions/node/v16.13.1/bin/npm\r\n Browsers:\r\n Chrome: 107.0.5304.110\r\n Chromium: 104.0.5112.79\r\n Firefox: 91.13.0esr\r\n npmPackages:\r\n vitepress: ^1.0.0-alpha.48 => 1.0.0-alpha.48\r\n```\r\n\r\n\r\n### Additional context\r\n\r\nnone\r\n\r\n### Validations\r\n\r\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\r\n- [X] Read the [docs](https://vitepress.vuejs.org).\r\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[],1996,"Development Mode not working","2023-03-08T00:04:45Z","https://github.com/vuejs/vitepress/issues/1996",0.7553148,{"description":2951,"labels":2952,"number":2953,"owner":2875,"repository":2876,"state":2910,"title":2954,"updated_at":2955,"url":2956,"score":2957},"### Is your feature request related to a problem? Please describe.\n\nWhen I try to create checkbox like GitHub markdown it doesn't get rendered as checkboxes:\r\n\r\n\r\n```md\r\n- [ ] This won't work in VitePress\r\n- [ ] This also won't work in VitePress\r\n```\n\n### Describe the solution you'd like\n\nRendering md `- [ ]` & `- [x]` as checkbox uncheck & checked respectively\n\n### Describe alternatives you've considered\n\nNone\n\n### Additional context\n\nI also noticed (I guess) posva also had the checkbox list and missing checkbox rendering when using `- [ ]`\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[],3648,"✨ Support checkbox in markdown","2024-03-21T00:04:44Z","https://github.com/vuejs/vitepress/issues/3648",0.76033187,{"description":2959,"labels":2960,"number":2961,"owner":2875,"repository":2876,"state":2910,"title":2962,"updated_at":2963,"url":2964,"score":2965},"### Is your feature request related to a problem? Please describe.\r\n\r\nMultiple sidebars do not work with multiple locales\r\n\r\nMultiple sidebars work only for the root locale\r\n\r\n```js\r\nimport sidebar_es from \"./sidebar.es\";\r\nimport sidebar_en from \"./sidebar.en\";\r\nimport sidebar_subdir_es from \"./sidebar.subdir.es\";\r\nimport sidebar_subdir_en from \"./sidebar.subdir.en\";\r\n\r\nexport default defineConfig({\r\n locales: {\r\n root: {\r\n lang: \"sp\",\r\n label: \"Spanish\",\r\n themeConfig: {\r\n nav: nav_es,\r\n sidebar: {\r\n \"/\": sidebar_es,\r\n \"/subdir/\": sidebar_subdir_es,\r\n },\r\n },\r\n },\r\n en: {\r\n lang: \"en\",\r\n label: \"English\",\r\n themeConfig: {\r\n nav: nav_en,\r\n sidebar: {\r\n \"/\": sidebar_en,\r\n \"/subdir/\": sidebar_subdir_en,\r\n },\r\n },\r\n```\r\n\r\nIn this example `/en/subdir/` path shows default `sidebar_en` sidebar\r\n\r\n### Describe the solution you'd like\r\n\r\nMultiple sidebars should work for secondary locales\r\n\r\n### Describe alternatives you've considered\r\n\r\n_No response_\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Validations\r\n\r\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\r\n- [X] Read the [docs](https://vitepress.dev).\r\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\r\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[],3202,"i18n and multiple sidebars problem","2023-11-21T00:04:49Z","https://github.com/vuejs/vitepress/issues/3202",0.7641267,["Reactive",2967],{},["Set"],["ShallowReactive",2970],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fzd_3dbNzRw4Qi3fKW0Kid-b3tBYH0IXL6pYi-fbnDmQ":-1},"/vuejs/vitepress/3930"]