File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
docs/backend/upgrading/version-specific-migration Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -25,3 +25,37 @@ For Plone 6.1, TinyMCE has been upgraded from version 5 to 7.
25
25
- [How to upgrade TinyMCE 5 to TinyMCE 6](https://www.tiny.cloud/blog/upgrade-to-tinymce-6/)
26
26
- [Upgrading TinyMCE](https://www.tiny.cloud/docs/tinymce/latest/upgrading/)
27
27
```
28
+
29
+ ### Enable the TinyMCE accordion plugin
30
+
31
+ Go to the controlpanel to manage TinyMCE settings
32
+
33
+ Enable the Plugin in the controlpanel
34
+
35
+ Add a menu entry ` accordion ` for TinyMCE in the controlpanel
36
+
37
+ ``` {code-block} json
38
+ {
39
+ "insert": {
40
+ "title": "Insert",
41
+ "items": "link media | template hr | accordion"
42
+ },
43
+ }
44
+ ```
45
+
46
+ Check your settings in the HTML filter controlpanel
47
+
48
+ add two new tags to ` valid tags `
49
+
50
+ - ` summary `
51
+ - ` details `
52
+
53
+ add a new attribute to ` custom_attributes `
54
+
55
+ - ` open `
56
+
57
+ for a transform to valid bootstrap5 accordion markup use an outputfilter
58
+
59
+ ``` {seealso}
60
+ - [Addon collective.outputfilters.tinymceaccordion](https://github.com/collective/collective.outputfilters.tinymceaccordion)
61
+ ```
You can’t perform that action at this time.
0 commit comments