本文の文字数をカウントして比較
MTML
<$mt:EntryBody count_characters="1" setVar="cntWord"$>
<p><$mt:EntryBody words="150" convert_breaks="0" remove_html="1"$><mt:If name="cntWord" gt="150">…</mt:If></p>
本文の文字数をcntWordに格納。
本文出力の末尾にmt:ifをつかって、cntWordの文字数を比較。
gtモディファイアは「~より大きい場合」となります。
本文以外は「words」が使えなかったので「trim_to」で代用
MTML
<mt:If tag="EntryTitle">
<$mt:EntryTitle count_characters="1" setVar="cntWord"$>
<$mt:EntryTitle escape="html" trim_to="85"$><mt:If name="cntWord" gt="85">…</mt:If>
</mt:If>