@@ -2,7 +2,21 @@ tinymce.init({
22 selector : "textarea" ,
33 plugins : [ "uploadcare" , "code" , "link" , "preview" , "lists" ] ,
44 uploadcare_public_key : '<your-public-key>' ,
5- a11y_advanced_options : true ,
5+ uploadcare_filters : [
6+ { name : 'none' } , // No filter applied
7+ { name : 'adaris' , amount : - 100 } , // Adaris with inverted effect (amount -100), label defaults to 'adaris'
8+ { name : 'adaris' , amount : - 100 , label : 'Vintage Fade' } , // Adaris with inverted effect (amount -100), label reads 'Vintage Fade'
9+ { name : 'adaris' , amount : 0 , label : 'Base' } , // Adaris with neutral effect (amount 0), label reads 'Base'
10+ { name : 'adaris' , amount : 50 , label : 'Light' } , // Adaris with light effect (amount 50), label reads 'Light'
11+ { name : 'adaris' , amount : 100 , label : 'Standard' } , // Adaris with standard effect (amount 100), label reads 'Standard'
12+ { name : 'adaris' , amount : 200 , label : 'Intense' } , // Adaris with intense effect (amount 200), label reads 'Intense'
13+ { name : 'zevcen' , amount : 200 , label : 'Glow Boost' } , // Zevcen with intense effect (amount 200), label reads 'Glow Boost'
14+ { name : 'galen' , amount : 80 , label : 'Soft Focus' } , // Galen with softening effect (amount 80), label reads 'Soft Focus'
15+ { name : 'carris' , amount : 120 , label : 'Sharp Contrast' } , // Carris with high contrast (amount 120), label reads 'Sharp Contrast'
16+ { name : 'ferand' , amount : 60 , label : 'Light Touch' } , // Ferand with light enhancement (amount 60), label reads 'Light Touch'
17+ { name : 'sorahel' , amount : - 50 , label : 'Night Mood' } // Sorahel with darkened effect (amount -50), label reads 'Night Mood'
18+ ] ,
19+ a11y_advanced_options : true ,
620 toolbar : "undo redo | styles | bold italic underline | forecolor | bullist numlist| link uploadcare | code preview" ,
721 height : 700 ,
822 content_style : `
0 commit comments