\r\n\u003C/CodeRunner>\r\n\r\n:::\r\n```\r\n\r\nThe expected rendering result is\r\n\r\n\r\n\r\nThe result of rendering in vitepress is\r\n\r\n\r\n\r\nCauses disabled styles to be lost\n\n### Reproduction\n\nThe component reference address that caused the problem\r\n https://view-shadcn-ui.devlive.org/components/form/input.html#disabled\r\n \r\n\n\n### Expected behavior\n\nNone\n\n### System Info\n\n```Text\nNone\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Check if you're on the [latest VitePress version](https://github.com/vuejs/vitepress/releases/latest).\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[],4447,"vitepress will cause component styles to be lost","2025-01-09T04:43:08Z","https://github.com/vuejs/vitepress/issues/4447",0.70188516,{"description":2930,"labels":2931,"number":2933,"owner":2874,"repository":2875,"state":2916,"title":2934,"updated_at":2935,"url":2936,"score":2937},"### Is your feature request related to a problem? Please describe.\r\n\r\nHello, I would like to suggest the official addition of an NPM link to the Social Links section in Vitepress. Vitepress is widely used for documenting NPM packages (libraries), and as a fan and active user of Vitepress for library documentation, I believe including an NPM link officially would be greatly beneficial. This is an enhancement that I think all users would appreciate.\r\n\r\nMay I proceed with this task and request permission to submit a PR? 🥺\r\n\r\n### Describe the solution you'd like\r\n\r\nI will likely modify the file below and submit a PR.\r\n\r\n`theme-default/support/socialIcons.ts`\r\n`types/default-theme.d.ts`\r\n`config/theme-configs.md`\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.",[2932],{"name":2913,"color":2914},3481,"Request to Add NPM to Social Links","2024-01-29T00:04:30Z","https://github.com/vuejs/vitepress/issues/3481",0.71140337,{"description":2939,"labels":2940,"number":2942,"owner":2874,"repository":2875,"state":2916,"title":2943,"updated_at":2944,"url":2945,"score":2946},"### Is your feature request related to a problem? Please describe.\n\nvuepress中的锚点可以动态变化:\r\n比如页面在\r\n`https://vuepress.vuejs.org/zh/config/#head`\r\n鼠标滚动后\r\n路径变成了\r\n`https://vuepress.vuejs.org/zh/config/#cache`\r\n\r\n\r\n而vitepress默认没有锚点,\r\n`https://vitepress.dev/zh/reference/default-theme-nav`。\r\n右侧目录的锚点是可以正常变化的,\r\n点击右侧目录的某个锚点后,\r\n浏览器上的url会出现对应的锚点,\r\n但是不会随着网页移动而变化了。\r\n\n\n### Describe the solution you'd like\n\n像vuepress那样,浏览器url默认出现当前网页的锚点,并且可以随页面变化而改变。\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n_No response_\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.",[2941],{"name":2886,"color":2887},3740,"浏览器上的锚点不会动态变化","2024-04-28T12:25:10Z","https://github.com/vuejs/vitepress/issues/3740",0.71635115,{"description":2948,"labels":2949,"number":2950,"owner":2874,"repository":2875,"state":2916,"title":2951,"updated_at":2952,"url":2953,"score":2954}," It uses git to get that timestamp. Disable it if you don't want to install git.\r\n\r\n_Originally posted by @brc-dd in https://github.com/vuejs/vitepress/issues/2175#issuecomment-1491609952_\r\n \r\n\r\nI am run vitepress dev server in webcontainer , it's haven't git , where config can i disable git ?",[],3575,"How to disable git","2024-02-23T00:05:15Z","https://github.com/vuejs/vitepress/issues/3575",0.7169466,{"description":2956,"labels":2957,"number":2961,"owner":2874,"repository":2875,"state":2916,"title":2962,"updated_at":2963,"url":2964,"score":2965},"### Is your feature request related to a problem? Please describe.\n\nMy GitHub workflow was successful, but there was no content output to the gh-pages branch.\n\nconfig such as:\n\nname: Static Site Generation\n\non:\n push:\n branches:\n - master\n pull_request:\n branches:\n - master\n\njobs:\n build:\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v2\n\n - name: Set up Node.js\n uses: actions/setup-node@v2\n with:\n node-version: '23.0.0'\n\n - name: Install dependencies\n run: npm install\n\n - name: Build static site\n run: npm run docs:build\n\n - name: Deploy to GitHub Pages\n uses: peaceiris/actions-gh-pages@v3\n with:\n github_token: ${{ secrets.TOKEN }}\n publish_dir: /docs/.vitepress/dist\n branch: gh-pages\n force_orphan: true\n cname: docs.cryptomator.org\n clean_before_commits: true\n commit_message: 'Deploy to GitHub Pages'\n clean_before_build: true\n CLEAN: true\n\n### Describe the solution you'd like\n\nMy GitHub workflow was successful, but there was no content output to the gh-pages branch.\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n_No response_\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.",[2958],{"name":2959,"color":2960},"need more info","bdbefc",4568,"github workflows","2025-02-26T04:44:36Z","https://github.com/vuejs/vitepress/issues/4568",0.717421,{"description":2967,"labels":2968,"number":2972,"owner":2874,"repository":2875,"state":2916,"title":2973,"updated_at":2974,"url":2975,"score":2976},"### Describe the bug\r\n\r\n>If the css logo of my css code block is uppercase (CSS) like the following\r\n\r\n>\\```CSS\r\n>p{}\r\n>\\```\r\n\r\n* When building it produces an error like this:`[vitepress] No language registration for CSS`\r\n\r\n### Reproduction\r\n\r\n`pnpm build`-->cause an error,\r\n`pnpm dev`-->and the preview also creates problems\r\n\r\n### Expected behavior\r\n\r\nCase insensitive on code block identifiers\r\n\r\n### System Info\r\n\r\n```shell\r\n[vite] Internal server error: No language registration for CSS\r\n Plugin: vitepress\r\n File: E:/Project/CSS/blog-css/docs/css布局/grid.md\r\n at getGrammar (E:\\Project\\CSS\\blog-css\\node_modules\\.pnpm\\shiki@0.10.1\\node_modules\\shiki\\dist\\index.js:2175:19)\r\n at codeToThemedTokens (E:\\Project\\CSS\\blog-css\\node_modules\\.pnpm\\shiki@0.10.1\\node_modules\\shiki\\dist\\index.js:2184:30)\r\n at Object.codeToHtml (E:\\Project\\CSS\\blog-css\\node_modules\\.pnpm\\shiki@0.10.1\\node_modules\\shiki\\dist\\index.js:2201:24)\r\n at Object.highlight (file:///E:/Project/CSS/blog-css/node_modules/.pnpm/vitepress@1.0.0-alpha.1/node_modules/vitepress/dist/node/serve-e8d58be3.js:31999:26) \r\n at default_rules.fence (file:///E:/Project/CSS/blog-css/node_modules/.pnpm/vitepress@1.0.0-alpha.1/node_modules/vitepress/dist/node/serve-e8d58be3.js:25746:27) \r\n at md.renderer.rules.fence (file:///E:/Project/CSS/blog-css/node_modules/.pnpm/vitepress@1.0.0-alpha.1/node_modules/vitepress/dist/node/serve-e8d58be3.js:32339:16)\r\n at md.renderer.rules.fence (file:///E:/Project/CSS/blog-css/node_modules/.pnpm/vitepress@1.0.0-alpha.1/node_modules/vitepress/dist/node/serve-e8d58be3.js:32828:21)\r\n at Object.md.renderer.rules.fence (file:///E:/Project/CSS/blog-css/node_modules/.pnpm/vitepress@1.0.0-alpha.1/node_modules/vitepress/dist/node/serve-e8d58be3.js:32803:12)\r\n at Renderer$1.render (file:///E:/Project/CSS/blog-css/node_modules/.pnpm/vitepress@1.0.0-alpha.1/node_modules/vitepress/dist/node/serve-e8d58be3.js:26025:38) \r\n at MarkdownIt.render (file:///E:/Project/CSS/blog-css/node_modules/.pnpm/vitepress@1.0.0-alpha.1/node_modules/vitepress/dist/node/serve-e8d58be3.js:31950:24)\r\n```\r\n\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.vuejs.org).\r\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2969],{"name":2970,"color":2971},"bug: pending triage","e99695",772,"No language registration for CSS","2023-01-21T14:34:15Z","https://github.com/vuejs/vitepress/issues/772",0.71890634,["Reactive",2978],{},["Set"],["ShallowReactive",2981],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$frq-QWQnBIsrgeVzyGPhRKm1KsqZfQcTvGqJzEFFlJ9c":-1},"/vuejs/vitepress/3929"]