좋은 게시판 만들어주셔서 정말 감사합니다.
워드프레스 게시판 중 가장 깔끔하고 사용하기 편한 것 같습니다.
http://c9c9.2bstory.com/?mod=document&uid=119
위에 보시는것처럼 그냥 텍스트만 적으면 문제없는데 테이블을 사용하면 엔터가 많이 사용된 상태로 출력되네요..
css 쪽을 수정하려고 해도 도저히 어디를 수정해야 할지 잘 모르겠습니다..
안녕하세요.
스킨의 document.php파일을 열어보세요.
<?php if($board->use_editor):?>
<?=nl2br($content->content)?>
이 부분을
<?php if($board->use_editor):?>
<?
function nl2br_skip_html($string){
// remove any carriage returns (mysql)
$string = str_replace("\r", '', $string);
// replace any newlines that aren't preceded by a > with a <br />
$string = preg_replace('/(?<!>)\n/', "<br />\n", $string);
return $string;
}
echo nl2br_skip_html($content->content);
?>
이렇게 바꿔보세요.
다른 KBoard 사용자분께서 도움을 주셨습니다.
감사합니다
저는 이렇게 해결하였습니다.
<?php function nl2br_skip_html($string){
// remove any carriage returns (mysql)
$string = str_replace("\r", '', $string);
// replace any newlines that aren't preceded by a > with a <br />
$string = preg_replace('/(?<!>)\n/', "<br />\n", $string);
return $string;
}?>
<?php if($board->use_editor):?>
<?php echo nl2br_skip_html($content->content);?>