Changeset 5102
- Timestamp:
- 01/21/08 22:44:12 (10 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/FM_Markdown/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/FM_Markdown/index.php
r5099 r5102 9 9 $path = ROOT . "/attach/$blogid"; 10 10 $url = "{$service['path']}/attach/$blogid"; 11 $content = Markdown($content);12 11 if(!function_exists('FM_TTML_bindAttachments')) { // To reduce the amount of loading code! 13 12 require_once 'ttml.php'; … … 26 25 } 27 26 $content = Markdown($content); 28 $view = FM_ TTML_format($blogid, $id, $content, $keywords, $useAbsolutePath, true);27 $view = FM_Markdown_format($blogid, $id, $content, $keywords, $useAbsolutePath, true); 29 28 if (!$blog['publishWholeOnRSS']) $view = UTF8::lessen(removeAllTags(stripHTML($view)), 255); 30 29 return $view;
