我正在使用TinyMCE 4.x版本,BBCode作为我项目的源代码。下面是它的TinyMCE初始化代码,
tinymce.init({
mode: "textareas",
editor_selector: "mceEditor",
resize: "both",
forced_root_block: false,
remove_redundant_brs : false,
verify_html : false,
force_br_newlines: true,
force_p_newlines: false,
remove_redundant_brs : false,
remove_linebreaks : false,
valid_elements: 'br',
plugins: ["autolink link image anchor bbcode code noneditable"],
toolbar: "bold italic link | code | bbcode",
});
如果我在内容的末尾添加换行符或额外的行/空格并尝试从javascript(tinyMCE.activeEditor.getElement().val()
)获取内容,则获得的内容将采用修剪后的形式。无论如何,当我们从TinyMCE获取内容时,是否要停止修剪内容的正确修剪?
我尝试了不同的选项:Linebreaks in TinyMCE editor show extra line on preview, not in code,tinymce remove text spaces and line breaks链接,但选项对我不起作用。
有谁知道我需要做出哪些改变才能克服这个问题?