diff --git a/docs/api/overview/rest_routes_overview.md b/docs/api/overview/rest_routes_overview.md
index 8ae5f1f..e7e04b4 100644
--- a/docs/api/overview/rest_routes_overview.md
+++ b/docs/api/overview/rest_routes_overview.md
@@ -31,23 +31,23 @@ For quick navigation you can use either the tabs below or the side menu:
-GET |
- /events |
+`GET` |
+ /events |
Gets data on all events and returns a json object with an array of events objects |
-POST |
- /events |
+`POST` |
+ /events |
Creates a new event and returns a json object with the event ID in it |
-PUT |
- /events |
+`PUT` |
+ /events |
Updates data on an event |
-DELETE |
- /events |
+`DELETE` |
+ /events |
Deletes data on an event |
@@ -67,22 +67,22 @@ For quick navigation you can use either the tabs below or the side menu:
-GET |
- /calendars |
+`GET` |
+ /calendars |
Gets data on all calendars and returns a json object with an array of calendars objects |
-POST |
- /calendars |
+`POST` |
+ /calendars |
Creates a new calendar (event type) and returns a json object with the calendar ID in it |
-PUT |
- /calendars | Updates data on a calendar (event type) |
+`PUT` |
+ /calendars | Updates data on a calendar (event type) |
-DELETE |
- /calendars |
+`DELETE` |
+ /calendars |
Deletes data on a calendar (event type) |
@@ -101,13 +101,13 @@ For quick navigation you can use either the tabs below or the side menu:
-GET |
- /uploads |
+`GET` |
+ /uploads |
Gets the requested binary file from the server |
-POST |
- /uploads |
+`POST` |
+ /uploads |
Uploads a binary file to the server and returns a json object with its id, name, and url |
diff --git a/docs/guides/integration_with_react.md b/docs/guides/integration_with_react.md
index 905575a..d432bb2 100644
--- a/docs/guides/integration_with_react.md
+++ b/docs/guides/integration_with_react.md
@@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **React**. We have prepared code exampl
## Creating a project
:::info
-Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
+Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
:::
You can create a basic **React** project or use **React with Vite**. Let's name the project as **my-react-event-calendar-app**:
diff --git a/docs/guides/integration_with_svelte.md b/docs/guides/integration_with_svelte.md
index 2b49021..76535d8 100644
--- a/docs/guides/integration_with_svelte.md
+++ b/docs/guides/integration_with_svelte.md
@@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **Svelte**. We have prepared code examp
## Creating a project
:::info
-Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
+Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
:::
To create a **Svelte** JS project, run the following command:
diff --git a/docs/guides/integration_with_vue.md b/docs/guides/integration_with_vue.md
index c4a5546..ea2d3da 100644
--- a/docs/guides/integration_with_vue.md
+++ b/docs/guides/integration_with_vue.md
@@ -7,7 +7,7 @@ description: You can learn about the integration with Vue in the documentation o
# Integration with Vue
:::tip
-You should be familiar with the basic concepts and patterns of [**Vue**](https://vuejs.org/) before reading this documentation. To refresh your knowledge, please refer to the [**Vue 3 documentation**](https://v3.vuejs.org/guide/introduction.html#getting-started).
+You should be familiar with the basic concepts and patterns of [**Vue**](https://vuejs.org/) before reading this documentation. To refresh your knowledge, please refer to the [**Vue 3 documentation**](https://vuejs.org/guide/introduction.html#getting-started).
:::
DHTMLX Event Calendar is compatible with **Vue**. We have prepared code examples on how to use DHTMLX Event Calendar with **Vue 3**. For more information, refer to the corresponding [**Example on GitHub**](https://github.com/DHTMLX/vue-event-calendar-demo).