Skip to content

Commit 58ace49

Browse files
DOC-3268: Added missing possible values section to boolean properties.
1 parent 030530c commit 58ace49

16 files changed

+43
-2
lines changed

modules/ROOT/partials/configuration/allow_html_in_comments.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The `allow_html_in_comments` option allows HTML-like content to be retained in c
77

88
*Default value:* `+false+`
99

10+
*Possible values:* `+true+`, `+false+`
11+
1012
[WARNING]
1113
Setting this option to `true` may expose your application to XSS vulnerabilities. The DOMPurify maintainers have identified potential security risks when HTML-like content is allowed in comments. Only enable this option if you trust your content sources and understand the security implications.
1214

modules/ROOT/partials/configuration/contextmenu_never_use_native.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ CAUTION: Using this option may result in unexpected behavior when right-clicking
99

1010
*Default value:* `+false+`
1111

12+
*Possible values:* `+true+`, `+false+`
13+
1214
=== Example: using `+contextmenu_never_use_native+`
1315

1416
[source,js]

modules/ROOT/partials/configuration/editable_root.adoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ NOTE: a {productname} root set as not-editable can contain child elements with t
1111

1212
*Default value:* `+true+`
1313

14+
*Possible values:* `+true+`, `+false+`
15+
1416
=== Example: using `+editable_root+`
1517

1618
[source,js]
1719
----
1820
tinymce.init({
1921
selector: 'textarea', // change this value according to your HTML
20-
editable_root: false
22+
editable_root: false
2123
});
2224
----
23-

modules/ROOT/partials/configuration/format_empty_lines.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ This option allows "inline" formats to be applied to empty lines for multi-line
77

88
*Default value:* `+false+`
99

10+
*Possible values:* `+true+`, `+false+`
11+
1012
=== Example: using `+format_empty_lines+`
1113

1214
[source,js]

modules/ROOT/partials/configuration/formats.adoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ Makes sure that the format is not merged with other wrappers having the same for
235235

236236
*Default value:* `+false+`
237237

238+
*Possible values:* `+true+`, `+false+`
239+
238240
===== Example: using `+exact+` parameter
239241

240242
[source,js]
@@ -258,6 +260,8 @@ States that the format is a container format for block elements. For example, a
258260

259261
*Default value:* `+false+`
260262

263+
*Possible values:* `+true+`, `+false+`
264+
261265
===== Example: using `+wrapper+`
262266

263267
[source,js]
@@ -317,6 +321,10 @@ So if the selection is from _a_ to _b_ in this html contents `+<h1><b>[a</b></h1
317321

318322
*Type:* `+Boolean+`
319323

324+
+Default value:* `+false+`
325+
326+
*Possible values:* `+true+`, `+false+`
327+
320328
===== Example: using `+block_expand+`
321329

322330
[source,js]
@@ -356,6 +364,8 @@ Enables control for removing the child elements of the matching format. This is
356364

357365
*Default value:* `+false+` for `+selector+` formats
358366

367+
*Possible values:* `+true+`, `+false+`
368+
359369
===== Example: using `+deep+`
360370

361371
[source,js]
@@ -394,6 +404,8 @@ After merge:
394404

395405
*Default value:* `+true+`
396406

407+
*Possible values:* `+true+`, `+false+`
408+
397409
===== Example: using `+merge_siblings+`
398410

399411
[source,js]

modules/ROOT/partials/configuration/importcss_append.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ If set to `+true+` this option will append the imported styles to the end of the
77

88
*Default value:* `+false+`
99

10+
*Possible values:* `+true+`, `+false+`
11+
1012
=== Example: using `+importcss_append+`
1113

1214
[source,js]

modules/ROOT/partials/configuration/importcss_exclusive.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ If set to `+false+` then selectors will not be globally exclusive meaning they c
77

88
*Default value:* `+true+`
99

10+
*Possible values:* `+true+`, `+false+`
11+
1012
=== Example: using `+importcss_exclusive+`
1113

1214
[source,js]

modules/ROOT/partials/configuration/importcss_merge_classes.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ This option is used in cases where the class attribute should be replaced or mer
77

88
*Default value:* `+true+`
99

10+
*Possible values:* `+true+`, `+false+`
11+
1012
=== Example: using `+importcss_merge_classes+`
1113

1214
[source,js]

modules/ROOT/partials/configuration/indent_use_margin.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ This option is set if the editor should use margin instead of padding when inden
77

88
*Default value:* `+false+`
99

10+
*Possible values:* `+true+`, `+false+`
11+
1012
=== Example: using `+indent_use_margin+`
1113

1214
[source,js]

modules/ROOT/partials/configuration/init_content_sync.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ NOTE: using the https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.
1515

1616
*Default value:* `+false+`
1717

18+
*Possible values:* `+true+`, `+false+`
19+
1820
=== Example: using `+init_content_sync+`
1921

2022
[source,js]

0 commit comments

Comments
 (0)