Skip to content

Commit f68339d

Browse files
committed
DOC-3313_V2: Fix list syntax errors.
1 parent 7baeed4 commit f68339d

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

modules/ROOT/partials/integrations/react-quick-start.adoc

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -297,11 +297,12 @@ endif::[]
297297
ifeval::["{productSource}" == "zip"]
298298
ifeval::["{productUse}" == "host"]
299299
. Install the `+@tinymce/tinymce-react+` package.
300+
+
300301
[source,sh]
301302
----
302303
npm install @tinymce/tinymce-react
303304
----
304-
305+
+
305306
. Unzip the content of the `+tinymce/js+` folder from the link:{download-enterprise}[{productname} zip] into the `+public+` folder. Afterwards the directory listing should be similar to below:
306307
+
307308
.> `tree -L 2 public`
@@ -325,7 +326,7 @@ public
325326
├── tinymce.d.ts
326327
└── tinymce.min.js
327328
----
328-
329+
+
329330
. Using a text editor, open `+./eslint.config.js` and add `+'src/tinymce'+` to the `+ignores+` array.
330331
+
331332
.Diff of `.eslint.config.js`
@@ -338,7 +339,7 @@ export default tseslint.config(
338339
extends: [js.configs.recommended, ...tseslint.configs.recommended],
339340
files: ['**/*.{ts,tsx}'],
340341
----
341-
342+
+
342343
. Using a text editor, open `+./src/App.jsx+` and replace the contents with:
343344
+
344345
[source,jsx]
@@ -381,6 +382,7 @@ export default function App() {
381382
);
382383
}
383384
----
385+
+
384386
. Update the `+licenseKey+` option in the editor element and include your xref:license-key.adoc[License Key].
385387
endif::[]
386388
ifeval::["{productUse}" == "bundle"]
@@ -391,7 +393,7 @@ ifeval::["{productUse}" == "bundle"]
391393
----
392394
npm install @tinymce/tinymce-react script-loader
393395
----
394-
396+
+
395397
. Unzip the content of the `+tinymce/js+` folder from the link:{download-enterprise}[{productname} zip] into the `+src+` folder. Afterwards the directory listing should be similar to below:
396398
+
397399
.> `tree -L 2 src`
@@ -417,7 +419,7 @@ src
417419
├── tinymce.d.ts
418420
└── tinymce.min.js
419421
----
420-
422+
+
421423
. Using a text editor, open `+./eslint.config.js+` and add `+'src/tinymce'+` to the `+ignores+` array.
422424
+
423425
.Diff of `.eslint.config.js`
@@ -437,7 +439,7 @@ index 092408a..1ab8db4 100644
437439
extends: [js.configs.recommended, ...tseslint.configs.recommended],
438440
files: ['**/*.{ts,tsx}'],
439441
----
440-
442+
+
441443
. Using a text editor, create `+./src/BundledEditor.jsx+` and set the contents to:
442444
+
443445
[source,jsx]
@@ -502,9 +504,8 @@ export default function BundledEditor(props) {
502504
);
503505
}
504506
----
505-
507+
+
506508
. Update the `+licenseKey+` option in the editor element and include your xref:license-key.adoc[License Key].
507-
508509
. Using a text editor, open `+./src/App.jsx+` and replace the contents with:
509510
+
510511
[source,jsx]

modules/ROOT/partials/integrations/vue-quick-start.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,16 +246,16 @@ import Editor from '@tinymce/tinymce-vue'
246246

247247
[[deploying-tinymce-independent]]
248248
== Deploying {productname} independent of the Vue.js application
249-
+
249+
250250
Deploying {productname} independent of the Vue.js application. To use a {productname} instance that has been deployed independent of the Vue.js application, use an HTML `+<script>+` tag.
251-
+
251+
252252
To use an independent deployment of {productname}, add a script to either the `<head>` or the end of the `<body>` of the HTML file, such as:
253-
+
253+
254254
[source,html]
255255
----
256256
<script src="/path/to/tinymce.min.js"></script>
257257
----
258-
+
258+
259259
To use an independent deployment of {productname} with the example create a Vue.js application, add the `+<script>+` to `/path/to/tinymce-vue-demo/public/index.html`.
260260
endif::[]
261261

0 commit comments

Comments
 (0)