<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[케이보드 썸머노트 엔터시 p 태그 대신 br 태그 변경]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/65154</link>
		<description><![CDATA[<p>워드프레스 kboard 썸머노트 에디터를 사용하고 있습니다.</p>

<p>엔터 시 &lt;p&gt; 태그 없이 br만 되게 가능한가요?</p>

<p> </p>

<p>function에 추가 하는 방법</p>

<p>add_filter('tiny_mce_before_init','change_mce_options', 10, 1);<br />
function change_mce_options($init){<br />
    $init["forced_root_block"] = false;<br />
    $init["force_br_newlines"] = true;<br />
    $init["force_p_newlines"] = false;<br />
    $init["convert_newlines_to_brs"] = true;<br />
    return $init;<br />
}</p>

<p> </p>

<p> </p>

<p>2. 게시판 스킨에 넣는 방법</p>

<p>\wp-content\plugins\kboard\skin\default\script.js</p>

<p> </p>

<pre>
$(".summernote").on("summernote.enter", function(we, e) {
   $(this).summernote("pasteHTML", "&lt;br&gt;&lt;br&gt;");
   e.preventDefault();
});</pre>

<p> </p>

<p>위의 방법을 사용했는데 안되네요ㅠㅠ</p>

<p> </p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[안녕하세요~^^

아래코드를 


$(&quot;.summernote&quot;).on(&quot;summernote.enter&quot;, function...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/65169</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>아래코드를 </p>

<pre>
<code class="language-php">$(".summernote").on("summernote.enter", function(we, e) {
   $(this).summernote("pasteHTML", "&lt;br&gt;&lt;br&gt;");
   e.preventDefault();
});</code></pre>

<p>아래 처럼 코드를 수정해보시겠어요?</p>

<pre>
<code class="language-php">jQuery(".summernote").on("summernote.enter", function(we, e) {
   jQuery(this).summernote("pasteHTML", "&lt;br&gt;&lt;br&gt;");
   e.preventDefault();
});</code></pre>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Thu, 13 Jul 2023 02:22:00 +0000</pubDate>
			<category>KBoard</category>
		</item>
			</channel>
</rss>