FormatTwitterPostsCode
From MWWiki
<?php class Format { public static function formatPost($content) { return Format::firstOrder($content); } private static function firstOrder($content) { return '_START_ ' . trim(str_replace("\n", "", $content)) . ' _STOP_' . "\n"; } } ?>
