Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
求人情報フォームで Redactor Wysiwyg エディターを使用しています。ただし、彼らのウェブサイトでは単語からの貼り付けのスーパークリーニングについて言及していますが、単語のマークアップに単一の段落区切りがある場合でも、余分な空の<p>とが大量に表示されます。<br />それを引き起こしている可能性のあるアイデアはありますか?他の誰かが同じ問題を抱えていますか?
<p>
<br />
ありがとう!マリア
$("#editor").redactor({ pasteBeforeCallback: function (html) { return html.replace(/<p>\s*<\/p>/g, " "); } });