Editor [SmartEditor 2] 엔터시 <P>태그 대신 <BR>태그 적용하기
페이지 정보
본문
네이버 스마트에디터는 줄 바꿈 시 단락태그 "P"를 사용합니다.
키보드 Enter 누르면 <p></p> 대신 <br> 이 생성되는 방법입니다.
1. js/SE2BasicCreator.js 58줄
oEditor.registerPlugin(new nhn.husky.SE_WYSIWYGEnterKey("P")); // 엔터 시 처리, 현재는 P로 처리
를 아래와 같이 변경
oEditor.registerPlugin(new nhn.husky.SE_WYSIWYGEnterKey("BR")); // 엔터 시 처리, 현재는 P로 처리
2. js/smarteditor2.js 6562줄
if(sLineBreaker == "BR"){
this.sLineBreaker = "BR";
}else{
this.sLineBreaker = "P";
}
를 아래와 같이 변경
if(sLineBreaker == "BR"){
this.sLineBreaker = "BR";
}else{
this.sLineBreaker = "BR";
}
3. js/smarteditor2.min.js
function(e){"BR"==e?this.sLineBreaker="BR":this.sLineBreaker="P"
를 아래와 같이 변경
function(e){"BR"==e?this.sLineBreaker="BR":this.sLineBreaker="BR"
{this.sLineBreaker="BR"}else{this.sLineBreaker="P"}
를 아래와 같이 변경
{this.sLineBreaker="BR"}else{this.sLineBreaker="BR"}
위의 절차를 거치게 되면 줄바꿈 처리가 "P"태그가 아닌 "BR"로 처리 되는 것을 확인할 수 있다.
단, 단락 태그는 "P"를 사용한다.
참고자료
http://cizel.kr/bbs/board.php?bo_table=10_16&wr_id=357
키보드 Enter 누르면 <p></p> 대신 <br> 이 생성되는 방법입니다.
1. js/SE2BasicCreator.js 58줄
oEditor.registerPlugin(new nhn.husky.SE_WYSIWYGEnterKey("P")); // 엔터 시 처리, 현재는 P로 처리
를 아래와 같이 변경
oEditor.registerPlugin(new nhn.husky.SE_WYSIWYGEnterKey("BR")); // 엔터 시 처리, 현재는 P로 처리
2. js/smarteditor2.js 6562줄
if(sLineBreaker == "BR"){
this.sLineBreaker = "BR";
}else{
this.sLineBreaker = "P";
}
를 아래와 같이 변경
if(sLineBreaker == "BR"){
this.sLineBreaker = "BR";
}else{
this.sLineBreaker = "BR";
}
3. js/smarteditor2.min.js
를 아래와 같이 변경
function(e){"BR"==e?this.sLineBreaker="BR":this.sLineBreaker="BR"
{this.sLineBreaker="BR"}else{this.sLineBreaker="P"}
를 아래와 같이 변경
{this.sLineBreaker="BR"}else{this.sLineBreaker="BR"}
위의 절차를 거치게 되면 줄바꿈 처리가 "P"태그가 아닌 "BR"로 처리 되는 것을 확인할 수 있다.
단, 단락 태그는 "P"를 사용한다.
참고자료
http://cizel.kr/bbs/board.php?bo_table=10_16&wr_id=357
댓글목록
등록된 댓글이 없습니다.