In our V8 we have some custom conif in tinyMceConfig.config:
<!-- this area is for custom config settings that should be added during TinyMCE initialization -->
<customConfig>
<!-- <config key="myKey">mySetting</config>-->
<config key="entity_encoding">raw</config>
<config key="style_formats">
[
{"title":"Headers","items":[{"title":"Header 2 (H2)","block":"h2"},{"title":"Header 3 (H3)","block":"h3"}]},
{"title":"Languages","items":[{"title":"English","inline":"span", "attributes":{"lang":"en"}},{"title":"Japanese","inline":"span", "attributes":{"lang":"ja"}},{"title":"Chinese","inline":"span", "attributes":{"lang":"zh-Hans"}}]}
]
</config>
</customConfig>
I understand this is now done in appsettings.json
Are there any tutorials or examples where I can achieve the same result?