getPluginInfo($plugin); $html = ''; if (!empty($pluginInfo)) { $file = api_get_path(SYS_PLUGIN_PATH).$plugin.'/README.md'; if (file_exists($file)) { $content = file_get_contents($file); $html = MarkdownExtra::defaultTransform($content); } } echo $html; break; }