TinyMCEを縦書きにしたので、半角文字を縦中横にするボタンを追加する。何もしないと半角は横倒しになる。 formats:{ tcy: {inline: 'span', 'classes': 'tcy'} }, setup: (editor) => { editor.ui.registry.addToggleButton('tcy', { text: '縦中横', onAction: (api) => { editor.execCommand('mceToggleFormat', false,…