private function displayInstallReadme($name)
 {
     $readme_file = $this->plugin_manager->getInstallReadme($name);
     $readme_content = $this->plugin_manager->fetchFormattedReadme($readme_file);
     if ($readme_content) {
         echo $readme_content;
     }
 }
 private function getFormattedReadme($name)
 {
     $readme_file = $this->plugin_manager->getInstallReadme($name);
     $readme_content = $this->plugin_manager->fetchFormattedReadme($readme_file);
     return $readme_content;
 }