\r\n```\r\n\r\n### Reproduction\r\n\r\nnull\r\n\r\n### Expected behavior\r\n\r\nSupport to use `{{}}` in `` inline code blocks.\r\n\r\n### System Info\r\n\r\n```shell\r\nnull\r\n```\r\n\r\n\r\n### Additional context\r\n\r\n\r\n\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.",[2923],{"name":2924,"color":2925},"invalid","ffffff",1988,"Build Error: Not Support {{}} in ``","2023-03-04T00:04:19Z","https://github.com/vuejs/vitepress/issues/1988",0.71409166,{"description":2932,"labels":2933,"number":2937,"owner":2877,"repository":2878,"state":2888,"title":2938,"updated_at":2939,"url":2940,"score":2941},"### Describe the bug\n\nStart the service (npm run docs:dev), modify Markdown, and view the results in real time, but there seems to be a problem after rendering, as shown in the video.\r\n\r\n[video](https://youtu.be/3DDyb4uh3j0)\r\n\r\n\r\n\r\n\n\n### Reproduction\n\n1. npm run docs:dev\r\n2. modify markdown\r\n3. view results\r\n4. HMR reload html\r\n5. **The content is rendered repeatedly**\r\n\n\n### Expected behavior\n\nHMR updates the content normally\n\n### System Info\n\n```shell\nSystem:\r\n OS: macOS 10.15.7\r\n CPU: (8) x64 Intel(R) Core(TM) i5-1038NG7 CPU @ 2.00GHz\r\n Memory: 91.06 MB / 16.00 GB\r\n Shell: 5.7.1 - /bin/zsh\r\n Binaries:\r\n Node: 12.22.2 - /usr/local/opt/node@12/bin/node\r\n Yarn: 1.22.10 - /usr/local/bin/yarn\r\n npm: 6.14.13 - /usr/local/opt/node@12/bin/npm\r\n Browsers:\r\n Chrome: 91.0.4472.114\r\n Safari: 14.1.1\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/coc)\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.",[2934],{"name":2935,"color":2936},"need more info","bdbefc",333,"HMR seems to be a bit of an anomaly","2023-01-21T16:20:23Z","https://github.com/vuejs/vitepress/issues/333",0.7144026,{"description":2943,"labels":2944,"number":2945,"owner":2877,"repository":2878,"state":2888,"title":2946,"updated_at":2947,"url":2948,"score":2949},"### Describe the bug\n\n\r\n\r\n\n\n### Reproduction\n\n引入外部资源\n\n### Expected behavior\n\n起作用\n\n### System Info\n\n```shell\n...\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.",[],667,"md 文件引入vue失败","2023-01-21T14:35:40Z","https://github.com/vuejs/vitepress/issues/667",0.7203714,{"description":2951,"labels":2952,"number":2956,"owner":2877,"repository":2878,"state":2888,"title":2957,"updated_at":2958,"url":2959,"score":2960},"### Describe the bug\n\nI've been trying to add a view transition effect to the article links on the homepage recently, I saw such a display effect.\r\n\r\nhttps://github.com/user-attachments/assets/6c0636c7-cd6e-495b-acee-3460bdf80f43\r\n\r\nWhen I first clicked on the article link, the transition effect displayed normally. After clicking the same article link a second time, could see the article flicker for a moment.\n\n### Reproduction\n\nThe link below is my relevant code, which is very simple, containing only a template for an \"a\" link, and then there is a click event listener that executes a transition effect upon clicking.\r\n\r\nhttps://github.com/shellRaining/blog/blob/main/theme/Home/PostItem.vue\r\n\r\nAfter my investigation, I found that an event listener was at too high a level, preventing me from intercepting its actions.\r\n\r\nhttps://github.com/vuejs/vitepress/blob/8f31a4c0780657af9137762c9394c56912f6e383/src/client/app/router.ts#L174-L239\r\n\r\nI attempted to intercept this event by using the `capture` and `stopImmediatePropagation` functions, but due to the timing of the setup being relatively late, it was not possible to achieve this. When I replaced the `a` link with `button`, this bug no longer occurred.\n\n### Expected behavior\n\nI hope to adjust the hierarchy of this listener so that users can customize link jump behavior.\n\n### System Info\n\n```Text\nSystem:\r\n OS: macOS 14.1\r\n CPU: (8) arm64 Apple M1\r\n Memory: 78.14 MB / 8.00 GB\r\n Shell: 5.9 - /bin/zsh\r\n Binaries:\r\n Node: 22.4.1 - /opt/homebrew/bin/node\r\n Yarn: 1.22.22 - /opt/homebrew/bin/yarn\r\n npm: 10.8.1 - /opt/homebrew/bin/npm\r\n pnpm: 9.6.0 - ~/Library/pnpm/pnpm\r\n Watchman: 2024.07.15.00 - /opt/homebrew/bin/watchman\r\n Browsers:\r\n Safari: 17.1\r\n Chrome: upon 111\n```\n\n\n### Additional context\n\nIs there any other way to solve this problem? I once wanted to use `onBeforeRouteChange` hook, but seems not suit my requirement.\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.",[2953],{"name":2954,"color":2955},"client","1AA9E5",4075,"The default click listener added by the router.ts level is too high","2024-08-02T04:42:53Z","https://github.com/vuejs/vitepress/issues/4075",0.72214663,{"description":2962,"labels":2963,"number":2967,"owner":2877,"repository":2878,"state":2888,"title":2968,"updated_at":2969,"url":2970,"score":2971},"**Describe the bug**\r\n\r\nHMR not working on import code snippets\r\n\r\n**To Reproduce**\r\n\r\nSteps to reproduce the behavior: \r\n\r\nsee this [video](https://www.youtube.com/watch?v=pRhWVOUJ-IQ)\r\n\r\n- git clone https://github.com/febug/vitepress-import-code-snippet.git\r\n- yarn\r\n- yarn serve\r\n- edit `hello.vue` content\r\n\r\n**Expected behavior**\r\n\r\nauto update code\r\n\r\n**System Info**\r\n- vitepress version: 0.7.2\r\n- Node version: v13.14.0\r\n- OS version: osx 10.15.3\r\n\r\n",[2964],{"name":2965,"color":2966},"build","377ba8",117,"HMR not working on import code snippets","2023-10-01T00:04:50Z","https://github.com/vuejs/vitepress/issues/117",0.7254586,["Reactive",2973],{},["Set"],["ShallowReactive",2976],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fNAegDGicl4sB695-X3tRAixJTUyTsYKXVQ4snktaQRs":-1},"/vuejs/vitepress/1985"]