묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
Content Widget에서 줄바꿈...
2011.04.11 15:15
Content Widget에서
줄바꿈 가능하게 하는법 없을까요??
현재상태에선
"안녕하세요 반갑습니다"
라는 글을 쓰면
지금 상태에선 "안녕하세요반갑습니다" 이렇게 출력됩니다.
소스를 보니까
이렇게 되있는데 $tioItem->getContent()함수가 그냥 텍스트만 가져오는거 같은데...
다른 방법 없을까요?
줄바꿈 가능하게 하는법 없을까요??
현재상태에선
"안녕하세요 반갑습니다"
라는 글을 쓰면
지금 상태에선 "안녕하세요반갑습니다" 이렇게 출력됩니다.
소스를 보니까
<div class="xeNotice">
<div class="headline">
<!--@if($topItem)-->
<h2><a href="{$topItem->getLink()}">{$topItem->getTitle($widget_info->subject_cut_size)}</a></h2>
<p>{$topItem->getContent()}</p>
<!--@end-->
</div>
<ul>
<!--@foreach($widget_info->content_items as $key => $item)-->
<li><a href="{$item->getLink()}">{$item->getTitle($widget_info->subject_cut_size)}</a> {$item->printExtraImages()} <em class="feedback">{$item->getCommentCount()}</em> <span class="date">{$item->getRegdate("y.m.d")}</span></li>
<!--@end-->
</ul>
<!--@if($topItem)--><a href="{getSiteUrl($topItem->domain, '', 'mid', $topItem->get('mid'))}" class="more">more</a><!--@end-->
</div>
이렇게 되있는데 $tioItem->getContent()함수가 그냥 텍스트만 가져오는거 같은데...
다른 방법 없을까요?