Skip to content

Commit 2928f27

Browse files
authored
Tiny corrections
1 parent ef957a8 commit 2928f27

File tree

1 file changed

+10
-10
lines changed
  • 15/umbraco-cms/customizing/extending-overview/extension-types

1 file changed

+10
-10
lines changed

15/umbraco-cms/customizing/extending-overview/extension-types/menu.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ In this section, you can learn how to register and create a custom Menu for the
1212

1313
### Manifest
1414

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.
1616

1717
{% tabs %}
1818

19-
{% tab title="Json" %}
19+
{% tab title="JSON" %}
2020

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`.
2222

2323
```json
2424
{
@@ -29,11 +29,11 @@ We can create the manifest using json in the umbraco-package.json.
2929
```
3030
{% endtab %}
3131

32-
{% tab title="Typescript" %}
32+
{% tab title="TypeScript" %}
3333

3434
The manifest can also be written in TypeScript.
3535

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.
3737

3838
```typescript
3939
import { ManifestMenu } from "@umbraco-cms/backoffice/extension-registry";
@@ -65,13 +65,13 @@ In this section, you can learn how to add custom Menu Items to your Umbraco back
6565

6666
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.
6767

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.
6969

7070
{% tabs %}
7171

72-
{% tab title="Json" %}
72+
{% tab title="JSON" %}
7373

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`.
7575

7676
```json
7777
{
@@ -88,11 +88,11 @@ We can create the manifest using json in the umbraco-package.json.
8888

8989
{% endtab %}
9090

91-
{% tab title="Typescript" %}
91+
{% tab title="TypeScript" %}
9292

9393
The manifest can also be written in TypeScript.
9494

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.
9696

9797
{% code title="manifest.ts" overflow="wrap" lineNumbers="true" %}
9898
```typescript

0 commit comments

Comments
 (0)