Advanced TinyMCE Configuration 플러그인을 사용하고있습니다.
style_formats
을 추가하려면 아래의 코드를 넣으라고 합니다.
어디에 넣으면 되는건가요??ㅠㅠ
tinymce.init({
selector: 'textarea', // change this value according to your html
toolbar: "styleselect",
style_formats: [
{title: 'Bold text', inline: 'b'},
{title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
{title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
{title: 'Example 1', inline: 'span', classes: 'example1'},
{title: 'Example 2', inline: 'span', classes: 'example2'},
{title: 'Table styles'},
{title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
]
});
참고 사이트
https://www.tiny.cloud/docs-4x/configure/content-formatting/#style_formats
안녕하세요~^^
이전에도 비슷한 질문이 있었는데
아래 링크를 참고해서 코드를 수정해보시겠어요?
https://www.cosmosfarm.com/threads/document/33248
고맙습니다.