Skip to content

Commit e8e2e81

Browse files
committed
End list items with full stop
Per PR feedback
1 parent 9d06059 commit e8e2e81

File tree

1 file changed

+22
-22
lines changed
  • 16/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor

1 file changed

+22
-22
lines changed

16/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Blocks enable editors to insert structured content elements directly into the Ri
44

55
Blocks can be added to the Rich Text Editor when:
66

7-
* Available Blocks are specified as part of the Rich Text Editor Data Type configuration
8-
* The **Insert Block** toolbar option is enabled in the Rich Text Editor
7+
* Available Blocks are specified as part of the Rich Text Editor Data Type configuration.
8+
* The **Insert Block** toolbar option is enabled in the Rich Text Editor.
99

1010
![RTE Insert Block Toolbar Button](images/rte-blocks-toolbar-insert-button.png)
1111

@@ -27,28 +27,28 @@ Blocks functionality can then be configured through the Rich Text Editor Data Ty
2727

2828
Configure how blocks appear and behave in the Content section:
2929

30-
* **Label** - Define how the block appears in the editor. Umbraco 16 uses [Umbraco Flavoured Markdown](../../../../../reference/umbraco-flavored-markdown.md) (UFM) syntax for dynamic labels. Use `{=propertyAlias}` to display property values (e.g., `{=author}` for a text property containing the name of an author, or `Written by: {=author}` for a label with static text and dynamic content)
31-
* **Display Inline** - When enabled, blocks remain inline with surrounding text. When disabled, blocks appear on separate lines
32-
* **Overlay size** - Set the size of the editing overlay when editors work with the block content
30+
* **Label** - Define how the block appears in the editor. Umbraco 16 uses [Umbraco Flavoured Markdown](../../../../../reference/umbraco-flavored-markdown.md) (UFM) syntax for dynamic labels. Use `{=propertyAlias}` to display property values (e.g., `{=author}` for a text property containing the name of an author, or `Written by: {=author}` for a label with static text and dynamic content).
31+
* **Display Inline** - When enabled, blocks remain inline with surrounding text. When disabled, blocks appear on separate lines.
32+
* **Overlay size** - Set the size of the editing overlay when editors work with the block content.
3333

3434
![RTE Blocks Editor Appearance Settings](images/rte-blocks-editor-appearance-settings.png)
3535

3636
### Data Models
3737

3838
Configure the content structure for your blocks:
3939

40-
* **Content model** - The Element Type that defines the main content properties for the block (required)
41-
* **Settings model** - Optional Element Type that defines additional settings or configuration options for the block
40+
* **Content model** - The Element Type that defines the main content properties for the block (required).
41+
* **Settings model** - Optional Element Type that defines additional settings or configuration options for the block.
4242

4343
![RTE Blocks Data Models Settings](images/rte-blocks-data-models-settings.png)
4444

4545
### Catalogue Appearance
4646

4747
Control how blocks appear in the block picker:
4848

49-
* **Background color** - Background color displayed behind the block icon or thumbnail
50-
* **Icon Color** - Color of the Element Type icon
51-
* **Thumbnail** - Custom image to replace the default Element Type icon
49+
* **Background color** - Background color displayed behind the block icon or thumbnail.
50+
* **Icon Color** - Color of the Element Type icon.
51+
* **Thumbnail** - Custom image to replace the default Element Type icon.
5252

5353
## Working with Blocks
5454

@@ -82,9 +82,9 @@ Rich Text Editor blocks use a different view location than Block List blocks. RT
8282

8383
### File Structure
8484

85-
* **Location**: `Views/Partials/RichText/Components/`
86-
* **Naming**: Use the exact Element Type alias as the filename (e.g., `quoteBlock.cshtml` for alias `quoteBlock`)
87-
* **Model**: `Umbraco.Cms.Core.Models.Blocks.RichTextBlockItem`
85+
* **Location**: `Views/Partials/RichText/Components/`.
86+
* **Naming**: Use the exact Element Type alias as the filename (e.g., `quoteBlock.cshtml` for alias `quoteBlock`).
87+
* **Model**: `Umbraco.Cms.Core.Models.Blocks.RichTextBlockItem`.
8888

8989
The different folder structure ensures that RTE blocks and Block List blocks can have separate rendering implementations, even when using the same Element Types.
9090

@@ -194,21 +194,21 @@ Building Custom Views for Block representations in Backoffice is the same for al
194194

195195
### Content Design
196196

197-
* Design blocks for reusable content patterns
198-
* Keep block content focused on a single purpose
199-
* Use descriptive labels that help editors understand the block's function
197+
* Design blocks for reusable content patterns.
198+
* Keep block content focused on a single purpose.
199+
* Use descriptive labels that help editors understand the block's function.
200200

201201
### Performance
202202

203-
* Avoid creating too many Blocks - this can overwhelm content editors
204-
* Use appropriate caching strategies for block rendering
205-
* Consider the impact of complex blocks on editor performance
203+
* Avoid creating too many Blocks - this can overwhelm content editors.
204+
* Use appropriate caching strategies for block rendering.
205+
* Consider the impact of complex blocks on editor performance.
206206

207207
### Accessibility
208208

209-
* Ensure block markup follows accessibility guidelines
210-
* Provide meaningful labels and descriptions
211-
* Test block rendering with screen readers
209+
* Ensure block markup follows accessibility guidelines.
210+
* Provide meaningful labels and descriptions.
211+
* Test block rendering with screen readers.
212212

213213
## Related Articles
214214

0 commit comments

Comments
 (0)