You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 15/umbraco-cms/customizing/extending-overview/extension-types/menu.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,13 @@ In this section, you can learn how to register and create a custom Menu for the
12
12
13
13
### Manifest
14
14
15
-
The manifest file can be created using either JSON or Typescript. Both methods are shown below.
15
+
The manifest file can be created using either JSON or TypeScript. Both methods are shown below.
16
16
17
17
{% tabs %}
18
18
19
-
{% tab title="Json" %}
19
+
{% tab title="JSON" %}
20
20
21
-
We can create the manifest using json in the umbraco-package.json.
21
+
We can create the manifest using JSON in the `umbraco-package.json`.
22
22
23
23
```json
24
24
{
@@ -29,11 +29,11 @@ We can create the manifest using json in the umbraco-package.json.
29
29
```
30
30
{% endtab %}
31
31
32
-
{% tab title="Typescript" %}
32
+
{% tab title="TypeScript" %}
33
33
34
34
The manifest can also be written in TypeScript.
35
35
36
-
For this typescript example we used a [Backoffice Entry Point](../../extending-overview/extension-types/backoffice-entry-point) extension to register the manifests
36
+
For this TypeScript example we used a [Backoffice Entry Point](../../extending-overview/extension-types/backoffice-entry-point) extension to register the manifests.
@@ -65,13 +65,13 @@ In this section, you can learn how to add custom Menu Items to your Umbraco back
65
65
66
66
To add custom menu items, you can define a single MenuItem manifest and link an element to it. In this element, you can fetch the data and render as many menu items as you want based on that data.
67
67
68
-
The code snippets below show how to declare a new menu item using JSON or Typescript.
68
+
The code snippets below show how to declare a new menu item using JSON or TypeScript.
69
69
70
70
{% tabs %}
71
71
72
-
{% tab title="Json" %}
72
+
{% tab title="JSON" %}
73
73
74
-
We can create the manifest using json in the umbraco-package.json.
74
+
We can create the manifest using JSON in the `umbraco-package.json`.
75
75
76
76
```json
77
77
{
@@ -88,11 +88,11 @@ We can create the manifest using json in the umbraco-package.json.
88
88
89
89
{% endtab %}
90
90
91
-
{% tab title="Typescript" %}
91
+
{% tab title="TypeScript" %}
92
92
93
93
The manifest can also be written in TypeScript.
94
94
95
-
For this typescript example we used a [Backoffice Entry Point](../../extending-overview/extension-types/backoffice-entry-point) extension to register the manifests
95
+
For this TypeScript example we used a [Backoffice Entry Point](../../extending-overview/extension-types/backoffice-entry-point) extension to register the manifests.
0 commit comments