Skip to content

Commit a1ab39e

Browse files
author
GiriSF4292
committed
979841: h1 tag errors resolved
1 parent 3766316 commit a1ab39e

21 files changed

+31
-47
lines changed

Document-Processing/Word/Word-Processor/angular/collaborative-editing/using-redis-cache-asp-net-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Collaborative Editing in Angular | Syncfusion
4-
description: Learn how to enable collaborative editing in Syncfusion Angular Document editor control of Syncfusion Essential JS 2 and more.
3+
title: Collaborative Editing in Angular with Redis in ASP.NET Core | Syncfusion
4+
description: Learn about collaborative editing in Syncfusion Angular Document editor control With Redis in ASP.NET Core of Syncfusion Essential JS 2 and more
55
platform: document-processing
66
control: Collaborative Editing
77
documentation: ug

Document-Processing/Word/Word-Processor/angular/collaborative-editing/using-redis-cache-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Collaborative Editing in Angular Document editor control | Syncfusion
4-
description: Learn how to enable collaborative editing in Syncfusion Angular Document editor control of Syncfusion Essential JS 2 and more.
3+
title: Collaborative Editing in Angular with Redis in Java | Syncfusion
4+
description: Learn about collaborative editing in Syncfusion Angular Document editor control With Redis in Java of Syncfusion Essential JS 2 and more
55
platform: document-processing
66
control: Collaborative Editing Java
77
documentation: ug

Document-Processing/Word/Word-Processor/angular/how-to/change-the-default-search-highlight-color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Change Search Highlight Color in Angular Document Editor
1212

13-
Document editor provides an options to change the default search highlight color using [`searchHighlightColor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel#searchhighlightcolor) in Document editor settings. The highlight color which is given in [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#documenteditorsettings) will be highlighted on the searched text. By default, search highlight color is `yellow`.
13+
Document editor provides an options to change the default search highlight color using [`searchHighlightColor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel/#searchhighlightcolor) in Document editor settings. The highlight color which is given in [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#documenteditorsettings) will be highlighted on the searched text. By default, search highlight color is `yellow`.
1414

1515
Similarly, you can use [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#documenteditorsettings) property for DocumentEditor also.
1616

Document-Processing/Word/Word-Processor/angular/how-to/customize-color-picker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Customize color picker in Angular Document editor component
1212

13-
Document editor provides an options to customize the color picker using [`colorPickerSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel#colorpickersettings)in the document editor settings. The color picker offers customization options for default appearance, by allowing selection between Picker or Palette mode, for font and border colors.
13+
Document editor provides an options to customize the color picker using [`colorPickerSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel/#colorpickersettings)in the document editor settings. The color picker offers customization options for default appearance, by allowing selection between Picker or Palette mode, for font and border colors.
1414

1515
Similarly, you can use [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/) property for DocumentEditor also.
1616

Document-Processing/Word/Word-Processor/angular/how-to/customize-context-menu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
1212

1313
## How to customize context menu in Document Editor
1414

15-
Document Editor allows you to add custom option in context menu. It can be achieved by using the [`addCustomMenu()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contextMenu#addcustommenu/) method and custom action is defined using the [`customContextMenuSelect`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/customContentMenuEventArgs/)
15+
Document Editor allows you to add custom option in context menu. It can be achieved by using the [`addCustomMenu()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contextMenu/#addcustommenu) method and custom action is defined using the [`customContextMenuSelect`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/customContentMenuEventArgs/)
1616

1717
### Add Custom Option
1818

@@ -93,7 +93,7 @@ Document Editor allows you to customize the added custom option and also to hide
9393

9494
#### Hide default context menu items
9595

96-
Using [`addCustomMenu()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contextmenu#addcustommenu/) method, you can hide the default context menu. By setting second parameter as true.
96+
Using [`addCustomMenu()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contextmenu/#addcustommenu) method, you can hide the default context menu. By setting second parameter as true.
9797

9898
The following code shows how to hide default context menu and add custom option in context menu.
9999

@@ -220,7 +220,7 @@ The following is the output of custom context menu with customization.
220220
221221
#### Customize Context Menu with sub-menu items
222222

223-
Document Editor allows you to customize the Context Menu with sub-menu items. It can be achieved by using the [`addCustomMenu()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contextMenu#addcustommenu/) method.
223+
Document Editor allows you to customize the Context Menu with sub-menu items. It can be achieved by using the [`addCustomMenu()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contextMenu/#addcustommenu) method.
224224

225225
The following code shows how to add a sub items in the custom option in context menu in Document Editor Container.
226226

Document-Processing/Word/Word-Processor/angular/how-to/customize-font-family-drop-down.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Customize font family drop down in Angular Document editor
1212

13-
Document editor provides an options to customize the font family drop down list values using [`fontFamilies`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel#fontfamilies) in Document editor settings. Fonts which are added in fontFamilies of [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#documenteditorsettings) will be displayed on font drop down list of text properties pane and font dialog.
13+
Document editor provides an options to customize the font family drop down list values using [`fontFamilies`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel/#fontfamilies) in Document editor settings. Fonts which are added in fontFamilies of [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#documenteditorsettings) will be displayed on font drop down list of text properties pane and font dialog.
1414

1515
Similarly, you can use [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#documenteditorsettings) property for DocumentEditor also.
1616

Document-Processing/Word/Word-Processor/angular/how-to/customize-ribbon.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ You can customize the ribbon tabs in the Document Editor by showing, hiding, or
120120

121121
### Show/Hide Tab
122122

123-
Document editor provides the [`showTab`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon#showtab) API to show and hide the existing tab using existing `RibbonTabType` and `tabId`.
123+
Document editor provides the [`showTab`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon/#showtab) API to show and hide the existing tab using existing `RibbonTabType` and `tabId`.
124124

125125
The following code example how to show/hide existing tab using existing tab type and tab id.
126126

@@ -135,7 +135,7 @@ this.container.ribbon.showTab('custom_tab', false);
135135

136136
### Add Tab
137137

138-
The Document Editor provides the [`addTab`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon#addtab) API, which allows you to insert a new custom tab either between existing tabs or at the end of the ribbon tabs.
138+
The Document Editor provides the [`addTab`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon/#addtab) API, which allows you to insert a new custom tab either between existing tabs or at the end of the ribbon tabs.
139139

140140
```typescript
141141

@@ -202,7 +202,7 @@ You can also customize ribbon groups within a tab to better organize commands or
202202

203203
### Show/Hide Group
204204

205-
Document Editor provides an [`showGroup`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon#showgroup) API to show or hide existing groups within a ribbon tab.
205+
Document Editor provides an [`showGroup`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon/#showgroup) API to show or hide existing groups within a ribbon tab.
206206

207207
The following code example show how to show/hide the group using group Id or [`RibbonGroupInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#ribbongroupinfo).
208208

@@ -281,7 +281,7 @@ You can customize individual items within ribbon groups. This includes showing,
281281

282282
### Show/Hide Item
283283

284-
Using [`showItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon#showitems) API in Document editor ribbon to enable/disable the existing item. Here, you can specify the item Id or [`RibbonItemInfo`].
284+
Using [`showItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon/#showitems) API in Document editor ribbon to enable/disable the existing item. Here, you can specify the item Id or [`RibbonItemInfo`].
285285

286286
The following code example show how to show/hide the item using item Id or [`RibbonItemInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#ribboniteminfo).
287287

@@ -298,7 +298,7 @@ this.container.ribbon.showItems('custom_item', false);
298298

299299
### Enable/Disable Item
300300

301-
Using [`enableItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon#enableitems) API in Document editor ribbon to enable/disable the existing item.
301+
Using [`enableItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon/#enableitems) API in Document editor ribbon to enable/disable the existing item.
302302

303303
```typescript
304304
// To disable the underline using ribbon item info
@@ -314,7 +314,7 @@ this.container.ribbon.enableItems('custom_item', false);
314314

315315
### Add Item
316316

317-
You can use the [`addItem`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon#additem) API in the Document Editor ribbon to add a new item. Additionally, you can specify the target tab and group where the new item should be placed.
317+
You can use the [`addItem`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/ribbon/#additem) API in the Document Editor ribbon to add a new item. Additionally, you can specify the target tab and group where the new item should be placed.
318318

319319
```typescript
320320

Document-Processing/Word/Word-Processor/angular/how-to/customize-tool-bar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Document Editor Container allows you to customize(add, show, hide, enable, and d
1717
* Add - New items can defined by [`CustomToolbarItemModel`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/customToolbarItemModel/) and with existing items in [`toolbarItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#toolbaritems) property. Newly added item click action can be defined in [`toolbarClick`](https://ej2.syncfusion.com/angular/documentation/api/toolbar/clickEventArgs/).
1818

1919
* Show, Hide - Existing items can be shown or hidden using the [`toolbarItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#toolbaritems) property. Pre-defined toolbar items are available with [`ToolbarItem`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/toolbarItem/).
20-
* Enable, Disable - Toolbar items can be enabled or disable using [`enableItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/toolbar#enableitems)
20+
* Enable, Disable - Toolbar items can be enabled or disable using [`enableItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/toolbar/#enableitems)
2121

2222
```typescript
2323
import { Component, OnInit, ViewChild } from '@angular/core';

Document-Processing/Word/Word-Processor/angular/how-to/disable-auto-focus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# How to disable auto focus in Syncfusion<sup style="font-size:70%">&reg;</sup> Angular Document Editor component
11+
# How to disable auto focus in Syncfusion<sup style="font-size:70%">&reg;</sup> Angular Document Editor
1212

1313
Document Editor gets focused automatically when the page loads. If you want the Document editor not to be focused automatically it can be customized.
1414

Document-Processing/Word/Word-Processor/angular/how-to/disable-optimized-text-measuring.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ domainurl: ##DomainURL##
1010

1111
# Disable optimized text measuring in Angular Document editor component
1212

13-
Starting from v19.3.0.x, the accuracy of text size measurements in Document editor is improved such as to match Microsoft Word pagination for most Word documents. This improvement is included as default behavior along with an optional API [`enableOptimizedTextMeasuring`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel#enableoptimizedtextmeasuring) in Document editor settings.
13+
Starting from v19.3.0.x, the accuracy of text size measurements in Document editor is improved such as to match Microsoft Word pagination for most Word documents. This improvement is included as default behavior along with an optional API [`enableOptimizedTextMeasuring`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel/#enableoptimizedtextmeasuring) in Document editor settings.
1414

15-
If you want the Document editor component to retain the document pagination (display page-by-page) behavior like v19.2.0.x and older versions. Then you can disable this optimized text measuring improvement, by setting `false` to [`enableOptimizedTextMeasuring`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel#enableoptimizedtextmeasuring) property of Angular Document Editor component.
15+
If you want the Document editor component to retain the document pagination (display page-by-page) behavior like v19.2.0.x and older versions. Then you can disable this optimized text measuring improvement, by setting `false` to [`enableOptimizedTextMeasuring`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel/#enableoptimizedtextmeasuring) property of Angular Document Editor component.
1616

1717
## Disable optimized text measuring in `DocumentEditorContainer` instance
1818

0 commit comments

Comments
 (0)