ipsum...\r\n---\r\n```\r\nIt doesn't work.\r\n\r\nThen try:\r\n```yaml\r\n---\r\ndetails: Lorem
,ipsum...\r\n---\r\n```\r\nIt doesn't work.\r\n\r\nThen:\r\n```yaml\r\ndetails: |\r\n Lorem\r\n ipsum...\r\n```\r\nIt doesn't work, too.\r\n\r\nThen I tried JSON. The document says that Json also works.\r\n> VitePress also supports JSON frontmatter syntax, starting and ending in curly braces:\r\n\r\n```JSON\r\n\r\n{\r\n \"details\": \"Lorem\\nipsum...\"\r\n}\r\n\r\n```\r\nIt doesn't work, too.\r\n\r\n\r\n### Describe the solution you'd like\r\n\r\nI want to know how to achive it.\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.vuejs.org).\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.",[3081,3084],{"name":3082,"color":3083},"theme","0754FB",{"name":3085,"color":3086},"has-workaround","1B4515",1809,"How to add linefeed/linebreak in details of Home layout","2023-06-21T00:04:10Z","https://github.com/vuejs/vitepress/issues/1809",0.7480003,{"description":3093,"labels":3094,"number":3095,"owner":3030,"repository":3031,"state":3044,"title":3096,"updated_at":3097,"url":3098,"score":3099},"### Describe the bug\r\n\r\nThe project was built successfully and completed, but the terminal just doesn't run continue, when I deploy on GitHub, the same issue makes the deployment process got stuck and won't run the next step. \r\n\r\n\r\n\r\n### Reproduction\r\n\r\nPlease see our repos [VFluent3](https://stackblitz.com/~/github.com/Creator-SN/VFluent3)\r\nThen run:\r\n\r\n```bash\r\nyarn docs:build\r\n```\r\n\r\n### Expected behavior\r\n\r\nPlease help me to resolve this issue and deploy the repo.\r\n\r\n### System Info\r\n\r\n```Text\r\nhttps://github.com/Creator-SN/VFluent3/blob/3532c3298555c2662fe42e6da4861181a33d9114/docs/.vitepress/config.mts\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] Check if you're on the [latest VitePress version](https://github.com/vuejs/vitepress/releases/latest).\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[],3661,"The build process is stuck","2024-03-26T00:04:19Z","https://github.com/vuejs/vitepress/issues/3661",0.7569632,{"description":3101,"labels":3102,"number":3104,"owner":3030,"repository":3031,"state":3044,"title":3105,"updated_at":3106,"url":3107,"score":3108},"### Describe the bug\n\n\r\n\n\n### Reproduction\n\nhttps://vitepress.vuejs.org/\n\n### Expected behavior\n\ncorrect positioning\n\n### System Info\n\n```shell\nMicrosoft Edge\r\nVersion 110.0.1587.57 (Official build) (64-bit)\n```\n\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.vuejs.org).\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[3103],{"name":3082,"color":3083},2027,"[DOC bug]error URL navigation","2023-03-18T00:04:21Z","https://github.com/vuejs/vitepress/issues/2027",0.7577336,{"description":3110,"labels":3111,"number":3112,"owner":3030,"repository":3031,"state":3044,"title":3113,"updated_at":3114,"url":3115,"score":3116},"### Describe the bug\n\nI have written a markdown it plugin, and the code is as follows\r\n```js\r\nexport default defineConfig({\r\n title: \"My Awesome Project\",\r\n markdown: {\r\n config: (md) => {\r\n md.block.ruler.before(\r\n \"paragraph\",\r\n \"myplugin\",\r\n function (state, startLine, endLine) {\r\n var ch,\r\n token,\r\n pos = state.bMarks[startLine] + state.tShift[startLine],\r\n max = state.eMarks[startLine];\r\n ch = state.src.charCodeAt(pos);\r\n\r\n if (ch !== 0x40 /*@*/ || pos >= max) {\r\n return false;\r\n }\r\n\r\n let text = state.src.substring(pos, max);\r\n let rg = /^@\\s(.*)/;\r\n let match = text.match(rg);\r\n\r\n if (match && match.length) {\r\n let result = match[1];\r\n\r\n // Create the opening token for the h1 tag\r\n token = state.push(\"heading_open\", \"h1\", 1);\r\n token.markup = \"@\";\r\n token.map = [startLine, state.line];\r\n // Add class to the h1 tag\r\n token.attrs = [[\"class\", \"bg-red-300\"]];\r\n\r\n // Create the inline content inside the h1 tag\r\n token = state.push(\"inline\", \"\", 0);\r\n token.content = result;\r\n token.map = [startLine, state.line];\r\n token.children = [];\r\n\r\n // Create the closing token for the h1 tag\r\n token = state.push(\"heading_close\", \"h1\", -1);\r\n token.markup = \"@\";\r\n\r\n state.line = startLine + 1;\r\n return true;\r\n }\r\n }\r\n );\r\n },\r\n },\r\n });\r\n```\r\n\r\nIt's just a simple syntax parse(This is not the main point, it is just a simple plugin written to illustrate the issue)\r\n\r\nEnter the following content in the markdown file\r\n```\r\n@ header -> \u003Ch1 class=\"bg-red-300\">header\u003C/h1> \r\n```\r\n\r\nI have followed the [tailwindcss guide](https://tailwindcss.com/docs/guides/vite#vue)Installation\r\n\r\nThen start the development server\r\n```bash\r\nnpm run docs:dev\r\n```\r\n\r\n\r\nBut its'. bg-red-300 'style did not take effect\r\n\r\n\r\nBut when I continued to input an HTML fragment carrying 'bg-red-300' in markdown, it took effect\r\n\r\n\r\n\r\n\r\nWhen I deleted the HTML fragment carrying 'bg-red-300' and restarted the development server, it had no effect again\r\n\r\nrefer to:\r\nhttps://github.com/ajiho/vitepress-tailwindcss-markdown-it\r\n\r\nThis problem has been bothering me for a long time, can you help me?\r\n\n\n### Reproduction\n\n[refer to](https://github.com/ajiho/vitepress-tailwindcss-markdown-it)\n\n### Expected behavior\n\nAfter the parse plugin of markdown it renders, the tailwindcss style should take effect immediately\n\n### System Info\n\n```Text\nSystem:\r\n OS: Windows 10 10.0.19044\r\n CPU: (8) x64 Intel(R) Core(TM) i7-4720HQ CPU @ 2.60GHz\r\n Memory: 1.36 GB / 7.91 GB\r\n Binaries:\r\n Node: 22.11.0 - C:\\Program Files\\nodejs\\node.EXE\r\n npm: 10.9.0 - C:\\Program Files\\nodejs\\npm.CMD\r\n Browsers:\r\n Edge: Chromium (131.0.2903.86)\r\n Internet Explorer: 11.0.19041.3636\r\n npmPackages:\r\n vitepress: ^1.5.0 => 1.5.0\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.",[],4433,"The style does not take effect when using the markdown extension plugin with tailwindcss","2024-12-26T04:43:12Z","https://github.com/vuejs/vitepress/issues/4433",0.76203245,{"description":3118,"labels":3119,"number":3121,"owner":3030,"repository":3031,"state":3044,"title":3122,"updated_at":3123,"url":3124,"score":3125},"### Describe the bug\n\nThe outline nav has the assistive tech text \"Table of Contents for current page\". Giving assistive tech users distinct or exclusive content is not recommended. In this case, the assistive tech-only text is at best duplicative (with the default outline title \"On this page\") and at worst conflicts with the visible text (if the outline title is configured to be something not equivalent to ~'things on this page').\n\n### Reproduction\n\nUse a screen reader to read the outline.\n\n### Expected behavior\n\nAssistive tech recognizes the configured outline title is as the outline's heading. No assistive tech-exclusive text duplicating displayed text is provided.\n\n### System Info\n\n```Text\nBrowser issue but here you go!\r\n\r\n\r\nSystem:\r\n OS: macOS 14.3.1\r\n CPU: (8) arm64 Apple M1\r\n Memory: 292.14 MB / 16.00 GB\r\n Shell: 5.9 - /opt/homebrew/bin/zsh\r\n Binaries:\r\n Node: 18.12.0 - ~/.asdf/installs/nodejs/18.12.0/bin/node\r\n Yarn: 1.22.22 - /opt/homebrew/bin/yarn\r\n npm: 8.19.2 - ~/.asdf/installs/nodejs/18.12.0/bin/npm\r\n pnpm: 8.15.6 - ~/Library/pnpm/pnpm\r\n bun: 1.1.4 - ~/.bun/bin/bun\r\n Browsers:\r\n Brave Browser: 123.1.64.122\r\n Chrome: 123.0.6312.124\r\n Edge: 123.0.2420.97\r\n Safari: 17.3.1\r\n```\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.",[3120],{"name":3053,"color":3054},3800,"accessibility: outline nav has duplicative assistive tech text not displayed visually","2024-05-04T04:42:03Z","https://github.com/vuejs/vitepress/issues/3800",0.7621933,["Reactive",3127],{},["Set"],["ShallowReactive",3130],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fdhwTzklPaQaAMV9y9NVhNsrZ5pv7vdLjE0hgxdOoqfE":-1},"/vuejs/vitepress/2902"]