Lines Matching defs:code
594 'unformatted', 'code', 'file', 'quote', 'internallink', 'rss', 'media', 'externallink',
778 * @param string $code source code to be highlighted
781 * @return string xhtml code
786 function p_xhtml_cached_geshi($code, $language, $wrapper = 'pre', array $options = null)
792 $code = preg_replace('/^\s*?\n|\s*?\n$/', '', $code);
795 $cache = getCacheName($language . $code . $optionsmd5, ".code");
804 $geshi = new GeSHi($code, $language);
825 return "<$wrapper class=\"code $language\">$highlighted_code</$wrapper>";