1
有誰知道如何允許在TinyMCE中使用自定義的大寫標籤?看起來,TinyMCE不喜歡大寫標籤,即使它們已被聲明爲有效。這裏是我的TinyMCE的配置:如何在TinyMCE中允許自定義的大寫標籤
tinyMCE.init({
mode: "specific_textareas",
theme: "advanced",
language: "en",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
theme_advanced_statusbar_location: "bottom",
theme_advanced_buttons1: "bold,italic,|,sub,sup,|,charmap,|,table,|,code",
theme_advanced_path: false,
theme_advanced_resizing: true,
plugins: "fullscreen,paste,table",
paste_auto_cleanup_on_paste : true,
relative_urls: false,
width: "300",
height: "300",
theme_advanced_resizing_min_height : "10",
force_br_newlines : true,
force_p_newlines : false,
forced_root_block : '',
entity_encoding: "raw",
valid_elements : "B/strong,I/em,SUP/sup,SUB/sub",
extended_valid_elements: "CUSTOM"
})
鍵入類似
<CUSTOM>this is a custom tag</CUSTOM>
不起作用,因爲< CUSTOM>被剝離。
如果我改變初始化腳本extended_valid_elements: "custom"
,然後正常工作 - 我可以輸入
<custom>this is a custom tag</custom>
和<習俗被保留。
沒有人知道任何解決方法嗎?
謝謝!
不能你只使用小寫標籤? – Thariama
不,這是傳統數據,所有標籤都是自定義的,並且是大寫字母。這是否意味着TinyMCE無法實現? – His
您可以將它們轉換爲編輯器初始化的小寫字母。我不知道其他方式(但可能有一個) – Thariama