Skip to content

Commit 2318bb8

Browse files
eshanrnhgitbook-bot
authored andcommitted
GITBOOK-69: Fixed Contributing link - v15
1 parent 7e8d078 commit 2318bb8

File tree

20 files changed

+78
-121
lines changed

20 files changed

+78
-121
lines changed

15/umbraco-cms/README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,6 @@
22
description: Your main resource when building and managing an Umbraco CMS website.
33
cover: .gitbook/assets/Umbraco 15 - Release - Hero_1665x438px.jpg
44
coverY: 0
5-
layout:
6-
cover:
7-
visible: true
8-
size: full
9-
title:
10-
visible: true
11-
description:
12-
visible: true
13-
tableOfContents:
14-
visible: true
15-
outline:
16-
visible: true
17-
pagination:
18-
visible: true
195
---
206

217
# Umbraco CMS Documentation

15/umbraco-cms/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* [Our Umbraco](https://our.umbraco.com/documentation/)
77
* [GitHub](https://github.com/umbraco/UmbracoDocs/tree/umbraco-eol-versions)
88
* [Release Notes](https://our.umbraco.com/download/releases/)
9-
* [Contribute](https://docs.umbraco.com/welcome/contribute/)
9+
* [Contribute](https://docs.umbraco.com/contributing)
1010
* [Sustainability Best Practices](https://docs.umbraco.com/sustainability-best-practices/)
1111

1212
## Fundamentals

15/umbraco-cms/fundamentals/backoffice/logviewer.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,11 @@ With structured logging and a query language, you can efficiently search and ide
2020

2121
Here are some example queries to help you get started. For more details on the syntax, see the https://github.com/serilog/serilog-filters-expressions project.
2222

23-
**Find all logs that are from the namespace 'Umbraco.Core'**
24-
`StartsWith(SourceContext, 'Umbraco.Core')`
23+
**Find all logs that are from the namespace 'Umbraco.Core'**`StartsWith(SourceContext, 'Umbraco.Core')`
2524

26-
**Find all logs that have the property 'Duration' and the duration is greater than 1000ms**
27-
`Has(Duration) and Duration > 1000`
25+
**Find all logs that have the property 'Duration' and the duration is greater than 1000ms**`Has(Duration) and Duration > 1000`
2826

29-
**Find all logs where the message has localhost in it with SQL like**
30-
`@Message like '%localhost%'`
27+
**Find all logs where the message has localhost in it with SQL like**`@Message like '%localhost%'`
3128

3229
## Saved Searches
3330

15/umbraco-cms/fundamentals/backoffice/property-editors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ We recommend using the [Block Editor](built-in-umbraco-property-editors/block-ed
2121

2222
When creating a Data Type, specify the property editor for the Data Type to use by selecting from the "Property editor" list (as shown below).
2323

24-
![Data Type Definition](../../../../../14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/images/Media-picker-dataType.png)
24+
![Data Type Definition](built-in-umbraco-property-editors/images/Media-picker-dataType.png)
2525

2626
## [Built-in Property Editors in Umbraco](built-in-umbraco-property-editors/)
2727

31.3 KB
Loading

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/extensions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ The `tiptapExtension` extension is used to register a native [Tiptap Extension](
2222

2323
The `tiptapToolbarExtension` extension adds a toolbar action that interacts with the Tiptap editor (and native Tiptap extensions).
2424

25-
2625
## Adding a native extension
2726

2827
{% hint style="info" %}
29-
This example assumes that you will be creating an Umbraco package using the Vite/Lit/TypeScript setup.
28+
This example assumes that you will be creating an Umbraco package using the Vite/Lit/TypeScript setup.\
3029
You can learn how to do this [Vite Package Setup](../../../../../customizing/development-flow/vite-package-setup.md) article.
3130
{% endhint %}
3231

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/tags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Tags property editor allows you to add multiple tags to a node.
1010

1111
## Data Type Definition Example
1212

13-
![Tags Data Type Definition Example](images/tags-DataType.png)
13+
![Tags Data Type Definition Example](<images/tags-DataType (1).png>)
1414

1515
### Tag group
1616

15/umbraco-cms/fundamentals/data/adding-tabs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Tabs allow you to add horizontal organization in your Document Types, Media Type
1111
To add a tab, follow these steps:
1212

1313
1. Go to **Settings**.
14-
2. Create or select a **Document Type/Media Type/Member Type** and click **Add tab**.
14+
2. Create or select a **Document Type/Media Type/Member Type** and click **Add tab**.
1515

16-
![Add tab](images/Add-tab.png.png)
16+
![Add tab](<images/Add-tab.png (1).png>)
1717

1818
{% hint style="info" %}
1919
When adding the first tab, all existing groups are automatically added to the tab.
@@ -53,7 +53,7 @@ Converting a tab back into a group is not possible, as tabs can contain groups,
5353

5454
Once you start adding tabs, you might see a “Generic” tab appear. This is done to hold groups and properties that are not assigned to a tab. For example, a group of properties coming from a composition that has no tab. In order to display the groups and properties correctly and have a solid data structure, they will be displayed under the “Generic” tab.
5555

56-
![Generic-tab](images/Generic-tab.png)
56+
![Generic-tab](<images/Generic-tab (1).png>)
5757

5858
To manage the **Generic** tab on a **Document Type/Media Type**:
5959

15/umbraco-cms/fundamentals/data/creating-media/default-media-types.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ On this page you will find the media types and Data Types in Umbraco. These type
44

55
{% hint style="info" %}
66
After upgrading, the default media types are not created automatically. If you create them manually, make sure to:
7+
78
* Set the permission for each of the media types to **Allow at root**.
89
* Ensure that the **Folder** media type allows the new media types as children.
910
{% endhint %}
@@ -48,7 +49,7 @@ The `UmbracoMediaArticle` media type has the following properties:
4849
* `umbracoExtension` - Label (string)
4950
* `umbracoBytes` - Label (bigint)
5051

51-
![MediaArticle](images/umbraco-media-article-media-type.png)
52+
![MediaArticle](<images/umbraco-media-article-media-type (1).png>)
5253

5354
### UmbracoMediaAudio
5455

@@ -58,7 +59,7 @@ The `UmbracoMediaAudio` media type has the following properties:
5859
* `umbracoExtension` Label (string)
5960
* `umbracoBytes` Label (bigint)
6061

61-
![MediaAudio](images/umbraco-media-audio-media-type.png)
62+
![MediaAudio](<images/umbraco-media-audio-media-type (1).png>)
6263

6364
### UmbracoMediaVectorGraphics
6465

@@ -68,7 +69,7 @@ The `UmbracoMediaVectorGraphics` media type has the following properties:
6869
* `umbracoExtension` Label (string)
6970
* `umbracoBytes` Label (bigint)
7071

71-
![MediaVectorGraphics](images/umbraco-media-vector-graphicsmedia-type.png)
72+
![MediaVectorGraphics](<images/umbraco-media-vector-graphicsmedia-type (1).png>)
7273

7374
### UmbracoMediaVideo
7475

@@ -78,7 +79,7 @@ The `UmbracoMediaVideo` media type has the following properties:
7879
* `umbracoExtension` - Label (string)
7980
* `umbracoBytes` - Label (bigint)
8081

81-
![MediaVideo](images/umbraco-media-video-media-type.png)
82+
![MediaVideo](<images/umbraco-media-video-media-type (1).png>)
8283

8384
{% hint style="info" %}
8485
You can also create localization files for Media Types. You can read more about this in the [Document Type Localization](../defining-content/document-type-localization.md) article.
53.5 KB
Loading

0 commit comments

Comments
 (0)