Skip to content

Commit 677741c

Browse files
979389: Update the review corrections
1 parent dca6844 commit 677741c

File tree

6 files changed

+58
-58
lines changed

6 files changed

+58
-58
lines changed

blazor/blockeditor/built-in-blocks/built-in-blocks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ documentation: ug
99

1010
# Blocks in Blazor BlockEditor component
1111

12-
The Syncfusion Block Editor uses **Blocks** as the fundamental units for creating and managing content. The entire editor content is structured as a collection of these blocks, which are configured and managed through the [Blocks] property.
12+
The Syncfusion Block Editor uses **Blocks** as the fundamental units for creating and managing content. The entire editor content is structured as a collection of these blocks, which are configured and managed through the `Blocks` property.
1313

1414
## Blocks
1515

1616
Blocks are the core building elements of the editor, where each block represents a distinct content unit, such as a `Paragraph`, `Heading`, `List`, or specialized content like a `Code snippet` or `Image`. This block-based architecture makes it easy for users to rearrange, format, and manage discrete pieces of content independently.
1717

18-
You can configure blocks with various properties such as [ID], [BlockType], [Content] to create a rich, structured editor.
18+
You can configure blocks with various properties such as `ID`, `BlockType`, `Content`to create a rich, structured editor.
1919

2020
## Block types
2121

@@ -37,9 +37,9 @@ The Block Editor supports multiple block types, each offering different formatti
3737

3838
## Configure indent
3939

40-
You can specify the indentation level of a block using the [Indent] property. This property accepts a numeric value that determines how deeply a block is nested from the left margin.
40+
You can specify the indentation level of a block using the `Indent` property. This property accepts a numeric value that determines how deeply a block is nested from the left margin.
4141

42-
By default, the [Indent] property is set to `0`.
42+
By default, the `Indent` property is set to `0`.
4343

4444
```cshtml
4545
@@ -84,7 +84,7 @@ By default, the [Indent] property is set to `0`.
8484

8585
## Configure CSS Class
8686

87-
You can apply custom styling to individual blocks using the [CssClass] property. This property accepts a string containing one or more CSS class names.
87+
You can apply custom styling to individual blocks using the `CssClass` property. This property accepts a string containing one or more CSS class names.
8888

8989
Custom CSS classes allow you to define specialized styling for specific blocks in your editor.
9090

blazor/blockeditor/built-in-blocks/embed.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You can use the `Image` block to showcase an image content within your editor.
1717

1818
### Configure Image Block
1919

20-
You can render an `Image` block by setting the [BlockType] property to `Image` in the block model. The `Properties` property allows you to configure the image source, allowed file types, display dimensions, and more.
20+
You can render an `Image` block by setting the `BlockType` property to `Image` in the block model. The `Properties` property allows you to configure the image source, allowed file types, display dimensions, and more.
2121

2222
#### Global Image Settings
2323

@@ -39,7 +39,7 @@ The `ImageBlockSettings` property supports the following options:
3939

4040
#### Configure Image Block Properties
4141

42-
The `Image` block [Properties] property supports the following options:
42+
The `Image` block `Properties` property supports the following options:
4343

4444
| Property | Description | Default Value |
4545
|----------|-------------|---------------|

blazor/blockeditor/built-in-blocks/inline-content.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ documentation: ug
99

1010
# Inline Content in Blazor BlockEditor component
1111

12-
In the Syncfusion Block Editor, all content is organized within blocks. Each block contains a [Content] property, which is an array of inline elements that define the text and functionality within that block.
12+
In the Syncfusion Block Editor, all content is organized within blocks. Each block contains a `Content` property, which is an array of inline elements that define the text and functionality within that block.
1313

14-
Each inline element in the [Content] array is an object with properties such as [ID], [ContentType], [Content], and [Styles], allowing for granular control over its appearance and behavior.
14+
Each inline element in the `Content` array is an object with properties such as `ID`, `ContentType`, `Content`, and `Styles`, allowing for granular control over its appearance and behavior.
1515

1616
## Setting content type
1717

18-
The Block Editor supports several inline content types through the `ContentType` enum, which can be set using the [ContentType] property.
18+
The Block Editor supports several inline content types through the `ContentType` enum, which can be set using the `ContentType` property.
1919

2020
| Built-in Content Type | Description |
2121
|------------------------|-------------------------------------|
@@ -48,9 +48,9 @@ To create a hyperlink, set the `ContentType` property to `Link`. You can configu
4848

4949
### Configure link properties
5050

51-
Link settings control the behavior and properties of hyperlinks in your content. You can configure link settings using the link [Properties] property.
51+
Link settings control the behavior and properties of hyperlinks in your content. You can configure link settings using the link `Properties` property.
5252

53-
Link settings are configured through the [Properties] property, which accepts the following options:
53+
Link settings are configured through the `Properties` property, which accepts the following options:
5454

5555
| Option | Description | Default Value |
5656
| --------------------------------------------------------------------------- | ----------------------------------------------------------------- | ------------- |
@@ -68,7 +68,7 @@ Link settings are configured through the [Properties] property, which accepts th
6868

6969
## Configure Label
7070

71-
To render labels, set the [ContentType] property to `Label`. The `Properties` property allows you to specify which label to display.
71+
To render labels, set the `ContentType` property to `Label`. The `Properties` property allows you to specify which label to display.
7272

7373
### Built-in items
7474

@@ -94,36 +94,36 @@ You can customize the labels by using the `Properties` property with contentType
9494

9595
### Trigger Character configuration
9696

97-
Use the [TriggerChar] property to define the character that opens the label suggestions popup. The default trigger character is `$`.
97+
Use the `TriggerChar` property to define the character that opens the label suggestions popup. The default trigger character is `$`.
9898

9999
### Label items configuration
100100

101-
Define the available labels using the [Items] array. When a user types the trigger character, a popup will show matching items.
101+
Define the available labels using the `Items` array. When a user types the trigger character, a popup will show matching items.
102102

103103
Each item in the [Items] array supports the following properties:
104104

105105
| Property | Description |
106106
| --------------------------------------------------------------------- | --------------------------------------------------- |
107-
| [ID] | A unique identifier for the label. |
108-
| [Text] | The display text for the label. |
109-
| [GroupBy] | The category name for grouping similar labels. |
110-
| [LabelColor] | The background color of the label. |
111-
| [IconCss] | A CSS class for an icon to display with the label. |
107+
| `ID` | A unique identifier for the label. |
108+
| `Text` | The display text for the label. |
109+
| `GroupBy` | The category name for grouping similar labels. |
110+
| `LabelColor` | The background color of the label. |
111+
| `IconCss` | A CSS class for an icon to display with the label. |
112112

113113

114114
When users type the trigger character followed by text, a popup will appear showing matching label items from which they can select. The selected label will be inserted into the content as a Label content item.
115115

116116
### Using labels with group headers
117117

118-
Labels with the same [GroupBy] value will be grouped together in the label selection popup:
118+
Labels with the same `GroupBy` value will be grouped together in the label selection popup:
119119

120120
The below sample demonstrates the customization of labels in the Block Editor.
121121

122122
## Configure mention
123123

124124
Mentions are references to users or entities that can be inserted into your content. You can configure mention content by setting the type property to `Mention`.
125125

126-
Mentions are typically triggered by the `@` character and are linked to the [Users] collection defined in the Block Editor.
126+
Mentions are typically triggered by the `@` character and are linked to the `Users` collection defined in the Block Editor.
127127

128128
```cshtml
129129
@@ -167,23 +167,23 @@ Mentions are typically triggered by the `@` character and are linked to the [Use
167167

168168
## Applying Inline Styles
169169

170-
The Block Editor allows you to apply rich formatting to `Text`, `Link`, and `Code` elements using the [Styles] property.
170+
The Block Editor allows you to apply rich formatting to `Text`, `Link`, and `Code` elements using the `Styles` property.
171171

172172
The `styles` property supports the following options:
173173

174174
| Style Property | Description | Default Value |
175175
| ------------------------- | ------------------------------------------ | ------------- |
176-
| [Bold] | Makes the text bold. | `false` |
177-
| [italic] | Makes the text italicized. | `false` |
178-
| [underline] | Adds an underline to the text. | `false` |
179-
| [strikethrough] | Adds a line through the text. | `false` |
180-
| [color] | Sets the text color (HEX or RGBA format). | `''` |
181-
| [backgroundColor] | Sets the background color for the text. | `''` |
182-
| [superscript] | Renders the text as superscript. | `false` |
183-
| [subscript] | Renders the text as subscript. | `false` |
184-
| [uppercase] | Converts the text to uppercase. | `false` |
185-
| [lowercase] | Converts the text to lowercase. | `false` |
186-
| [inlineCode] | Converts the text to InlineCode. | `''` |
176+
| `Bold` | Makes the text bold. | `false` |
177+
| `italic` | Makes the text italicized. | `false` |
178+
| `underline` | Adds an underline to the text. | `false` |
179+
| `strikethrough` | Adds a line through the text. | `false` |
180+
| `color` | Sets the text color (HEX or RGBA format). | `''` |
181+
| `backgroundColor` | Sets the background color for the text. | `''` |
182+
| `superscript` | Renders the text as superscript. | `false` |
183+
| `subscript` | Renders the text as subscript. | `false` |
184+
| `uppercase` | Converts the text to uppercase. | `false` |
185+
| `lowercase` | Converts the text to lowercase. | `false` |
186+
| `inlineCode` | Converts the text to InlineCode. | `''` |
187187

188188
You can apply one or more of these styles to any supported content element for rich text formatting.
189189

blazor/blockeditor/built-in-blocks/list-types.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ documentation: ug
99

1010
# Lists in Blazor BlockEditor component
1111

12-
The Syncfusion Blazor Block Editor component uses list blocks to organize content into structured lists. To render a specific list type, set the [BlockType] property of the `BlockModel` to `BulletList`, `NumberedList`, or `Checklist`. Bullet lists are ideal for unordered items, numbered lists for ordered items, and checklists for interactive to-do lists.
12+
The Syncfusion Blazor Block Editor component uses list blocks to organize content into structured lists. To render a specific list type, set the `BlockType` property of the `BlockModel` to `BulletList`, `NumberedList`, or `Checklist`. Bullet lists are ideal for unordered items, numbered lists for ordered items, and checklists for interactive to-do lists.
1313

1414
## Configure bullet list
1515

16-
You can render a Bullet List block by setting the [BlockType] property to `BulletList`. This block type is used to display unordered lists.
16+
You can render a Bullet List block by setting the `BlockType` property to `BulletList`. This block type is used to display unordered lists.
1717

1818
### Type
1919

@@ -28,7 +28,7 @@ You can render a Bullet List block by setting the [BlockType] property to `Bulle
2828

2929
### Configure placeholder
3030

31-
The [Placeholder] property sets the text that appears when the block is empty. The default placeholder for a bullet list is `Add item`.
31+
The `Placeholder` property sets the text that appears when the block is empty. The default placeholder for a bullet list is `Add item`.
3232

3333
```cshtml
3434
// Adding placeholder value
@@ -42,7 +42,7 @@ The [Placeholder] property sets the text that appears when the block is empty. T
4242

4343
## Configure numbered list
4444

45-
You can render a Numbered List block by setting the [BlockType] property to `NumberedList`. This block type is used to display ordered lists.
45+
You can render a Numbered List block by setting the `BlockType` property to `NumberedList`. This block type is used to display ordered lists.
4646

4747
```cshtml
4848
// Adding numberedlist block
@@ -55,7 +55,7 @@ You can render a Numbered List block by setting the [BlockType] property to `Num
5555

5656
### Configure placeholder
5757

58-
The [Placeholder] property sets the text that appears when the block is empty. The default placeholder for a numbered list is `Add item`.
58+
The `Placeholder` property sets the text that appears when the block is empty. The default placeholder for a numbered list is `Add item`.
5959

6060
```cshtml
6161
// Adding placeholder value
@@ -69,7 +69,7 @@ The [Placeholder] property sets the text that appears when the block is empty. T
6969

7070
## Configure checklist
7171

72-
You can render a Checklist block by setting the [BlockType] property to `Checklist`. This block type is used for creating interactive to-do lists.
72+
You can render a Checklist block by setting the `BlockType` property to `Checklist`. This block type is used for creating interactive to-do lists.
7373

7474
```cshtml
7575
// Adding checklist block
@@ -82,9 +82,9 @@ You can render a Checklist block by setting the [BlockType] property to `Checkli
8282

8383
### Configure checked state
8484

85-
For blocks that support selection states, such as a `Checklist`, you can configure the checked state using the `properties` property with [IsChecked].
85+
For blocks that support selection states, such as a `Checklist`, you can configure the checked state using the `properties` property with `IsChecked`.
8686

87-
By default, the [IsChecked] property is set to `false`.
87+
By default, the `IsChecked` property is set to `false`.
8888

8989
```cshtml
9090
@using Syncfusion.Blazor.BlockEditor
@@ -134,7 +134,7 @@ By default, the [IsChecked] property is set to `false`.
134134

135135
### Configure placeholder
136136

137-
The [Placeholder] property sets the text that appears when the block is empty. The default placeholder for a checklist is `To Do`.
137+
The `Placeholder` property sets the text that appears when the block is empty. The default placeholder for a checklist is `To Do`.
138138

139139
```cshtml
140140
// Adding placeholder value

blazor/blockeditor/built-in-blocks/table-block.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ documentation: ug
99

1010
# Table Blocks in Blazor BlockEditor component
1111

12-
The Syncfusion Block Editor allows you to render structured data in rows and columns by setting the block's [BlockType] property to `Table`. You can customize the table layout, header, row numbers, and define columns and rows using the `Properties` property.
12+
The Syncfusion Block Editor allows you to render structured data in rows and columns by setting the block's `BlockType` property to `Table`. You can customize the table layout, header, row numbers, and define columns and rows using the `Properties` property.
1313

1414
### Configure Table Block
1515

16-
For Table blocks, you can configure layout and structure using the [Properties] property. This property supports the following options:
16+
For Table blocks, you can configure layout and structure using the `Properties` property. This property supports the following options:
1717

1818
| Property | Description | Default Value |
1919
|----------|-------------|---------------|

0 commit comments

Comments
 (0)