Skip to content

Commit a3e622f

Browse files
authored
Merge stable into master
2 parents 24423d4 + 47c0d2b commit a3e622f

File tree

18 files changed

+59
-59
lines changed

18 files changed

+59
-59
lines changed

docs/getting-started/integrations-cdn/dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
category: cloud
3-
meta-title: Using CKEditor 5 with .NET from CDN | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with .NET using CDN.
3+
meta-title: Using the CKEditor 5 WYSIWYG editor with .NET from CDN | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 rich-text editor with .NET using CDN. Follow step-by-step instructions for fast installation and setup.
55
order: 90
66
menu-title: .NET
77
---
88

99
# Integrating CKEditor 5 with .NET from CDN
1010

11-
As a pure JavaScript/TypeScript library, CKEditor 5 will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor 5 in a non-JS framework of your choice, for example, Microsoft's [.NET](https://dotnet.microsoft.com/).
11+
As a pure JavaScript/TypeScript library, the CKEditor 5 HTML editor will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor 5 in a non-JS framework of your choice, for example, Microsoft's [.NET](https://dotnet.microsoft.com/).
1212

1313
{@snippet getting-started/use-builder}
1414

docs/getting-started/integrations-cdn/laravel.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
category: cloud
3-
meta-title: Using CKEditor 5 with Laravel from CDN | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with Laravel using CDN.
3+
meta-title: Using the CKEditor 5 rich-text editor with Laravel from CDN | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 WYSIWYG editor with Laravel using CDN. Follow step-by-step instructions for fast installation and setup.
55
order: 80
66
menu-title: Laravel
77
---
88

99
# Integrating CKEditor 5 with Laravel from CDN
1010

11-
As a pure JavaScript/TypeScript library, CKEditor 5 will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor 5 in a non-JS framework of your choice, for example, the PHP-based [Laravel](https://laravel.com/).
11+
As a pure JavaScript/TypeScript library, the CKEditor 5 HTML editor will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor 5 in a non-JS framework of your choice, for example, the PHP-based [Laravel](https://laravel.com/).
1212

1313
{@snippet getting-started/use-builder}
1414

docs/getting-started/integrations-cdn/next-js.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
menu-title: Next.js
3-
meta-title: Using CKEditor 5 with Next.js from CDN | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with the Next.js framework using both routing strategies (App Router or Pages Router) and CDN.
3+
meta-title: Using the CKEditor 5 rich-text editor with Next.js from CDN | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 WYSIWYG editor with the Next.js framework using both routing strategies (App Router or Pages Router) and CDN.
55
category: cloud
66
order: 40
77
modified_at: 2023-11-14
@@ -88,7 +88,7 @@ export default CustomEditor;
8888

8989
The `CustomEditor` component is ready to be used inside a page. The page's directory will differ depending on the selected routing strategy.
9090

91-
CKEditor 5 is a client-side text editor and relies on the browser APIs, so you need to disable server-side rendering for our custom component. You can lazily load the component using the `dynamic()` function built into Next.js.
91+
The CKEditor 5 HTML editor is a client-side text editor and relies on the browser APIs, so you need to disable server-side rendering for our custom component. You can lazily load the component using the `dynamic()` function built into Next.js.
9292

9393
Prepare a wrapper for the `CustomEditor` component to load it on the client side.
9494

docs/getting-started/integrations-cdn/nuxt.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
menu-title: Nuxt
3-
meta-title: Using CKEditor 5 with Nuxt from CDN | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with the Nuxt framework using CDN.
3+
meta-title: Using the CKEditor 5 rich-text editor with Nuxt from CDN | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 WYSIWYG editor with the Nuxt framework using CDN. Follow step-by-step instructions for fast installation and setup.
55
category: cloud
66
order: 50
77
modified_at: 2025-03-13
@@ -11,7 +11,7 @@ modified_at: 2025-03-13
1111

1212
[Nuxt](https://nuxt.com/) is a Vue.js meta-framework for creating full-stack web applications. It offers everything you would expect from a modern framework, including various rendering modes, file-based routing, automatic code splitting, a large ecosystem of plugins and hosting integrations, and more.
1313

14-
CKEditor 5 does not support server-side rendering, but you can integrate it with the Nuxt framework. In this guide, you will add the editor to a Nuxt project. For this purpose, you will need a [Nuxt project](https://nuxt.com/docs/getting-started/installation) and the official {@link getting-started/integrations/vuejs-v3 CKEditor 5 Vue component}.
14+
The CKEditor 5 HTML editor does not support server-side rendering, but you can integrate it with the Nuxt framework. In this guide, you will add the editor to a Nuxt project. For this purpose, you will need a [Nuxt project](https://nuxt.com/docs/getting-started/installation) and the official {@link getting-started/integrations/vuejs-v3 CKEditor 5 Vue component}.
1515

1616
{@snippet getting-started/use-builder}
1717

docs/getting-started/integrations-cdn/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
menu-title: Vanilla JS
33
meta-title: Vanilla JS CKEditor 5 installation - quick start from CDN | CKEditor 5 Documentation
4-
meta-description: Install, integrate, and configure CKEditor 5 using Vanilla JS with CDN.
4+
meta-description: Install, integrate, and configure CKEditor 5 using Vanilla JS with CDN. Follow step-by-step instructions for fast installation and setup.
55
category: cloud
66
order: 20
77
---

docs/getting-started/integrations-cdn/salesforce.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
menu-title: Salesforce
3-
meta-title: Using CKEditor 5 with Salesforce from CDN | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with Salesforce and CKEditor 5 CDN
3+
meta-title: Using the CKEditor 5 rich-text editor with Salesforce from CDN | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 WYSIWYG editor with Salesforce and CKEditor 5 CDN. Follow step-by-step instructions for fast installation and setup.
55
category: cloud
66
order: 110
77
modified_at: 2025-04-04
@@ -20,7 +20,7 @@ This section assumes you are working within the [Salesforce development platform
2020
## Creating a Visualforce page
2121

2222
<info-box>
23-
The Visualforce page with CKEditor&nbsp;5 will be displayed in an iframe after embedding it in your Lightning page.
23+
The Visualforce page with the CKEditor&nbsp;5 HTML editor will be displayed in an iframe after embedding it in your Lightning page.
2424
</info-box>
2525

2626
To start the integration, you need to create a new Visualforce page that will be used for the CKEditor&nbsp;5 integration. Navigate to the *Setup* page of your development platform and use the search input to find *Visualforce pages*.

docs/getting-started/integrations-cdn/spring-boot.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
category: cloud
3-
meta-title: Using CKEditor 5 with Spring Boot from CDN | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with Spring Boot using CDN.
3+
meta-title: Using the CKEditor 5 WYSIWYG editor with Spring Boot from CDN | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 rich-text editor with Spring Boot using CDN. Follow step-by-step instructions for fast installation and setup.
55
order: 130
66
menu-title: Spring Boot
77
modified_at: 2025-05-06
88
---
99

1010
# Integrating CKEditor&nbsp;5 with Spring Boot from CDN
1111

12-
As a pure JavaScript/TypeScript library, CKEditor&nbsp;5 will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor&nbsp;5 in a non-JS framework of your choice, for example, the Java-based [Spring Boot](https://spring.io/projects/spring-boot).
12+
As a pure JavaScript/TypeScript library, CKEditor&nbsp;5 rich-text editor will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor&nbsp;5 in a non-JS framework of your choice, for example, the Java-based [Spring Boot](https://spring.io/projects/spring-boot).
1313

1414
{@snippet getting-started/use-builder}
1515

@@ -192,7 +192,7 @@ Now, we need to put our script in the previous template. We need to put the scri
192192
</html>
193193
```
194194

195-
To make this work with Spring Boot, you need to create a controller to serve the HTML page. Create a file named `HomeController.java` in your project's main package:
195+
To make the HTML editor work with Spring Boot, you need to create a controller to serve the HTML page. Create a file named `HomeController.java` in your project's main package:
196196

197197
```java
198198
package com.example.demo;

docs/getting-started/integrations-cdn/svelte.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
menu-title: Svelte
3-
meta-title: Using CKEditor 5 with Svelte from CDN | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with Svelte using CDN
3+
meta-title: Using the CKEditor 5 WYSIWYG editor with Svelte from CDN | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 rich-text editor with Svelte using CDN. Follow step-by-step instructions for fast installation and setup.
55
category: cloud
66
order: 110
77
modified_at: 2025-04-24
88
---
99

1010
# Integrating CKEditor&nbsp;5 with Svelte from CDN
1111

12-
[Svelte](https://svelte.dev/) is a modern JavaScript compiler that builds highly optimized, reactive web applications. Unlike traditional frameworks, Svelte shifts most of the work from runtime to build time, resulting in highly efficient applications. CKEditor&nbsp;5 can be easily integrated with Svelte applications, providing powerful rich text editing capabilities to your projects.
12+
[Svelte](https://svelte.dev/) is a modern JavaScript compiler that builds highly optimized, reactive web applications. Unlike traditional frameworks, Svelte shifts most of the work from runtime to build time, resulting in highly efficient applications. CKEditor&nbsp;5 rich-text editor can be easily integrated with Svelte applications, providing powerful rich text editing capabilities to your projects.
1313

1414
{@snippet getting-started/use-builder}
1515

@@ -171,7 +171,7 @@ npm run dev
171171

172172
### Component structure
173173

174-
The Svelte integration follows these key steps:
174+
The Svelte HTML editor integration follows these key steps:
175175

176176
1. **Static loading**: CKEditor 5 scripts and styles are loaded from CDN in the HTML file
177177
2. **Editor initialization**: The editor is created with the specified configuration when the component mounts

docs/getting-started/integrations/css.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
---
22
menu-title: CSS frameworks
3-
meta-title: Compatibility with CSS frameworks with npm | CKEditor 5 Documentation
4-
meta-description: Install, integrate, and configure CKEditor 5 using CSS frameworks
3+
meta-title: Compatibility of the CKEditor 5 WYSIWYG editor with CSS frameworks with npm | CKEditor 5 Documentation
4+
meta-description: Install, integrate, and configure the CKEditor 5 rich-text editor using CSS frameworks. Follow step-by-step instructions for fast setup.
55
category: installation
66
order: 90
77
---
88

99
# Compatibility with CSS frameworks
1010

11-
CKEditor&nbsp;5 is compatible with most of the popular CSS frameworks. However, to properly integrate with some of them, additional tweaks may be necessary. This is mostly because:
11+
CKEditor&nbsp;5 is compatible with most of the popular CSS frameworks. However, to properly integrate our robust HTML editor with some of them, additional tweaks may be necessary. This is mostly because:
1212

1313
* CSS frameworks often use a higher [CSS Specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity) in their style sheets and override default editor styles, distorting the user interface.
1414
* Modal components of various UI frameworks use high `z-index` values in their styles and render over (cover) the UI of CKEditor&nbsp;5.
1515
* Framework modals use an aggressive focus management policy that breaks the input fields in the rich-text editor (for example, the link input).
1616

17-
In this guide, you will learn how to address these integration issues and use the CKEditor&nbsp;5 WYSIWYG editor with the most popular frontend frameworks.
17+
In this guide, you will learn how to address these integration issues and use the CKEditor&nbsp;5 HTML editor with the most popular frontend frameworks.
1818

1919
{@snippet getting-started/use-builder}
2020

docs/getting-started/integrations/dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
category: self-hosted
3-
meta-title: Using CKEditor 5 with .NETfrom ZIP archive | CKEditor 5 Documentation
4-
meta-description: Integrate CKEditor 5 with .NET using a ZIP archive.
3+
meta-title: Using the CKEditor 5 WYSIWYG editor with .NET from ZIP archive | CKEditor 5 Documentation
4+
meta-description: Integrate the CKEditor 5 rich-text editor with .NET using a ZIP archive. Follow step-by-step instructions for fast installation and setup.
55
order: 90
66
menu-title: .NET
77
---
88

99
# Integrating CKEditor&nbsp;5 with .NET from ZIP
1010

11-
As a pure JavaScript/TypeScript application, CKEditor&nbsp;5 will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor&nbsp;5 in a non-JS framework of your choice, for example, Microsoft's [.NET](https://dotnet.microsoft.com/).
11+
As a pure JavaScript/TypeScript application, the CKEditor&nbsp;5 HTML editor will work inside any environment that supports such components. While we do not offer official integrations for any non-JavaScript frameworks, you can include a custom configuration of CKEditor&nbsp;5 in a non-JS framework of your choice, for example, Microsoft's [.NET](https://dotnet.microsoft.com/).
1212

1313
{@snippet getting-started/use-builder}
1414

0 commit comments

Comments
 (0)