diff --git a/docs/configuration.md b/docs/configuration.md index 6b102c98..c19be03d 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -5,7 +5,8 @@ id: configuration Both TanStack `DevTools` and `EventClient` can be configured. -> [!IMPORTANT] all configuration is optional unless marked (required) +> [!IMPORTANT] +> All configuration is optional unless marked (required) ## Devtools Component Configuration diff --git a/docs/framework/react/guides/custom-plugins.md b/docs/framework/react/guides/custom-plugins.md index dd06b469..cf792f81 100644 --- a/docs/framework/react/guides/custom-plugins.md +++ b/docs/framework/react/guides/custom-plugins.md @@ -104,7 +104,8 @@ export function createCounter() { } ``` -> [!IMPORTANT] `EventClient` is framework agnostic so this process will be the same regardless of framework or even in vanilla JavaScript. +> [!IMPORTANT] +> `EventClient` is framework agnostic so this process will be the same regardless of framework or even in vanilla JavaScript. ## Consuming The Event Client diff --git a/docs/vite-plugin.md b/docs/vite-plugin.md index dcd316f3..dc11584c 100644 --- a/docs/vite-plugin.md +++ b/docs/vite-plugin.md @@ -73,7 +73,8 @@ export default { ### editor -> [!IMPORTANT] `editor` is used as an escape hatch to implement your own go-to-source functionality if your system/editor does not work OOTB. We use `launch-editor` under the hood which supports a lot of editors but not all. If your editor is not supported you can implement your own version here. Here is the list of supported editors: https://github.com/yyx990803/launch-editor?tab=readme-ov-file#supported-editors +> [!IMPORTANT] +> `editor` is used as an escape hatch to implement your own go-to-source functionality if your system/editor does not work OOTB. We use `launch-editor` under the hood which supports a lot of editors but not all. If your editor is not supported you can implement your own version here. Here is the list of supported editors: https://github.com/yyx990803/launch-editor?tab=readme-ov-file#supported-editors The open in editor configuration which has two fields, `name` and `open`, `name` is the name of your editor, and `open` is a function that opens the editor with the given file and line number. You can implement your version for your editor as follows: