이 문제는 텍스트큐브 파일을 수정해서 해결할 수 있다. /library/view/view.php의 1047~1052째 줄을 다음처럼 수정하면 빈 줄을 없앨 수 있다.
function addWebSlice($content, $id, $title) {
return '<div class="hslice" id="'.$id.'">'.CRLF.
'<h4 class="entry-title" style="visibility:hidden;height:0;padding:0;margin:0;">'.$title.'</h4>'.CRLF.
'<div class="entry-content">'.CRLF.$content.CRLF.'</div>'.CRLF.
'</div>'.CRLF;
}
return '<div class="hslice" id="'.$id.'">'.CRLF.
'<h4 class="entry-title" style="visibility:hidden;height:0;padding:0;margin:0;">'.$title.'</h4>'.CRLF.
'<div class="entry-content">'.CRLF.$content.CRLF.'</div>'.CRLF.
'</div>'.CRLF;
}
↓
function addWebSlice($content, $id, $title) {
return '<!--[if gte IE 7]><div class="hslice" id="'.$id.'">'.CRLF.
'<h4 class="entry-title" style="visibility:hidden;height:0;padding:0;margin:0;">'.$title.'</h4><![endif]-->'.CRLF.
'<div class="entry-content">'.CRLF.$content.CRLF.'</div>'.CRLF.
'<!--[if gte IE 7]></div><![endif]-->'.CRLF;
}
아래는 수정한 파일이다. 압축을 풀어서 /library/view/view.php를 덮어써도 된다.return '<!--[if gte IE 7]><div class="hslice" id="'.$id.'">'.CRLF.
'<h4 class="entry-title" style="visibility:hidden;height:0;padding:0;margin:0;">'.$title.'</h4><![endif]-->'.CRLF.
'<div class="entry-content">'.CRLF.$content.CRLF.'</div>'.CRLF.
'<!--[if gte IE 7]></div><![endif]-->'.CRLF;
}
덧붙임 (2009.5.9) :
아래 viwe.php_20090501.zip는 5월 1일에 수정 배포된 view.php를 위에 설명한 대로 고친 파일입니다.

view.php.zip