Skip to content

Commit 9c99635

Browse files
committed
Missing languages for code blocks
1 parent 4d0d524 commit 9c99635

File tree

33 files changed

+102
-102
lines changed

33 files changed

+102
-102
lines changed

docs/administration/back_office/customize_integrated_help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This way you can adjust menu sections that are reproduced by the front end as ta
5151
The default `menu` object is structured as follows.
5252
Recreate this pattern when modifying an existing event with an intention to send it to the front end.
5353

54-
```
54+
```text
5555
root (MenuItem)
5656
5757
├── help__general // ("General" section)

docs/administration/configuration/repository_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ ibexa:
148148
repository: second_repository
149149
```
150150

151-
```
151+
```bash
152152
# .env.local
153153
154154
SECOND_DATABASE_URL=otherdb://otheruser:otherpasswd@otherhost:otherport/otherdbname?otherdbserversion

docs/api/graphql/graphql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ You can get your session cookie by logging in through the interface or through a
7272

7373
If you have [JWT authentication](development_security.md#jwt-authentication) enabled, you can use the following query to get your authentication token:
7474

75-
```
75+
```graphql
7676
mutation CreateToken {
7777
createToken(username: "admin", password: "publish") {
7878
token
@@ -83,7 +83,7 @@ mutation CreateToken {
8383

8484
Response:
8585

86-
```
86+
```json
8787
{
8888
"data": {
8989
"createToken": {

docs/api/graphql/graphql_operations.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can also make use of the generic `deleteContent` and `uploadFiles` mutations
1414

1515
Create a new Folder as a child of Location `2` with:
1616

17-
```
17+
```graphql
1818
mutation createFolder {
1919
createFolder(
2020
language: eng_GB
@@ -30,7 +30,7 @@ mutation createFolder {
3030

3131
Response:
3232

33-
```
33+
```json
3434
{
3535
"data": {
3636
"createFolder": {
@@ -44,7 +44,7 @@ Response:
4444

4545
Modify the name of a Folder content item with:
4646

47-
```
47+
```graphql
4848
mutation updateFolder {
4949
updateFolder(
5050
language: eng_GB
@@ -60,7 +60,7 @@ mutation updateFolder {
6060

6161
Response:
6262

63-
```
63+
```json
6464
{
6565
"data": {
6666
"updateFolder": {
@@ -76,7 +76,7 @@ The input for updating a content item is the same as when creating it, but all f
7676

7777
You can delete any content item by providing its `contentId` (or its GraphQL opaque ID under `id`):
7878

79-
```
79+
```graphql
8080
mutation deleteBlogPost {
8181
deleteContent(contentId: 64) {
8282
id
@@ -87,7 +87,7 @@ mutation deleteBlogPost {
8787

8888
Response:
8989

90-
```
90+
```json
9191
{
9292
"data": {
9393
"deleteContent": {
@@ -107,7 +107,7 @@ Response:
107107

108108
Uploading files makes use of dedicated mutations per content type, for example:
109109

110-
```
110+
```graphql
111111
mutation CreateImage($file: FileUpload!) {
112112
createImage(
113113
parentLocationId: 51,
@@ -161,7 +161,7 @@ curl -v -X POST \
161161
You can upload multiple files with one operation in a similar way by using the `uploadFiles` mutation.
162162
Here the files are provided in a `$files` variable and listed under `map` in the cURL request.
163163

164-
```
164+
```graphql
165165
mutation UploadMultipleFiles($files: [FileUpload]!) {
166166
uploadFiles(
167167
locationId: 51,

0 commit comments

Comments
 (0)