Skip to content

Commit f1af6f9

Browse files
Merge pull request #40 from DHTMLX/next
[fix] broken links (special task)
2 parents 703fec0 + d7c73f4 commit f1af6f9

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

docs/api/overview/rest_routes_overview.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,23 @@ For quick navigation you can use either the tabs below or the side menu:
3131
</thead>
3232
<tbody>
3333
<tr>
34-
<td>GET</td>
35-
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getevents_route"> /events</a></td>
34+
<td>`GET`</td>
35+
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getevents_route/"> /events</a></td>
3636
<td>Gets data on all events and returns a json object with an array of events objects</td>
3737
</tr>
3838
<tr>
39-
<td>POST</td>
40-
<td><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postevent_route"> /events</a></td>
39+
<td>`POST`</td>
40+
<td><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postevent_route/"> /events</a></td>
4141
<td>Creates a new event and returns a json object with the event ID in it</td>
4242
</tr>
4343
<tr>
44-
<td>PUT</td>
45-
<td><a href=" ../../../api/provider/rest_routes/put_routes/js_eventcalendar_putevent_route"> /events</a></td>
44+
<td>`PUT`</td>
45+
<td><a href="../../../api/provider/rest_routes/put_routes/js_eventcalendar_putevent_route/"> /events</a></td>
4646
<td>Updates data on an event</td>
4747
</tr>
4848
<tr>
49-
<td>DELETE</td>
50-
<td><a href=" ../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deleteevent_route"> /events</a></td>
49+
<td>`DELETE`</td>
50+
<td><a href="../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deleteevent_route/"> /events</a></td>
5151
<td>Deletes data on an event</td>
5252
</tr>
5353
</tbody>
@@ -67,22 +67,22 @@ For quick navigation you can use either the tabs below or the side menu:
6767
</thead>
6868
<tbody>
6969
<tr>
70-
<td>GET</td>
71-
<td><a href=" ../../../api/provider/rest_routes/get_routes/js_eventcalendar_getcalendars_route"> /calendars</a></td>
70+
<td>`GET`</td>
71+
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getcalendars_route/"> /calendars</a></td>
7272
<td>Gets data on all calendars and returns a json object with an array of calendars objects</td>
7373
</tr>
7474
<tr>
75-
<td>POST</td>
76-
<td ><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postcalendar_route"> /calendars</a></td>
75+
<td>`POST`</td>
76+
<td ><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postcalendar_route/"> /calendars</a></td>
7777
<td>Creates a new calendar (event type) and returns a json object with the calendar ID in it</td>
7878
</tr>
7979
<tr>
80-
<td>PUT</td>
81-
<td><a href=" ../../../api/provider/rest_routes/put_routes/js_eventcalendar_putcalendar_route"> /calendars</a></td><td>Updates data on a calendar (event type)</td>
80+
<td>`PUT`</td>
81+
<td><a href="../../../api/provider/rest_routes/put_routes/js_eventcalendar_putcalendar_route/"> /calendars</a></td><td>Updates data on a calendar (event type)</td>
8282
</tr>
8383
<tr>
84-
<td>DELETE</td>
85-
<td><a href=" ../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deletecalendar_route"> /calendars</a></td>
84+
<td>`DELETE`</td>
85+
<td><a href="../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deletecalendar_route/"> /calendars</a></td>
8686
<td>Deletes data on a calendar (event type)</td>
8787
</tr>
8888
</tbody>
@@ -101,13 +101,13 @@ For quick navigation you can use either the tabs below or the side menu:
101101
</thead>
102102
<tbody>
103103
<tr>
104-
<td>GET</td>
105-
<td><a href=" ../../../api/provider/rest_routes/get_routes/js_eventcalendar_getuploads_route"> /uploads</a></td>
104+
<td>`GET`</td>
105+
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getuploads_route/"> /uploads</a></td>
106106
<td>Gets the requested binary file from the server</td>
107107
</tr>
108108
<tr>
109-
<td>POST</td>
110-
<td><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postupload_route"> /uploads</a></td>
109+
<td>`POST`</td>
110+
<td><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postupload_route/"> /uploads</a></td>
111111
<td>Uploads a binary file to the server and returns a json object with its id, name, and url</td>
112112
</tr>
113113
</tbody>

docs/guides/integration_with_react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **React**. We have prepared code exampl
1515
## Creating a project
1616

1717
:::info
18-
Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
18+
Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
1919
:::
2020

2121
You can create a basic **React** project or use **React with Vite**. Let's name the project as **my-react-event-calendar-app**:

docs/guides/integration_with_svelte.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **Svelte**. We have prepared code examp
1515
## Creating a project
1616

1717
:::info
18-
Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
18+
Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
1919
:::
2020

2121
To create a **Svelte** JS project, run the following command:

docs/guides/integration_with_vue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: You can learn about the integration with Vue in the documentation o
77
# Integration with Vue
88

99
:::tip
10-
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).
10+
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).
1111
:::
1212

1313
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).

0 commit comments

Comments
 (0)