class Solargraph::Server

def htmlify text

def htmlify text
  rdoc_to_html text
end

def prepare_workspace directory

def prepare_workspace directory
  api_map = Solargraph::ApiMap.new(directory)
  api_map.update_yardoc
  @@semaphore.synchronize {
    @@api_hash[directory] = api_map
  }
end

def rdoc_to_html text

def rdoc_to_html text
  h = Helpers.new
  h.html_markup_rdoc(text)
end

def ruby_to_html code

def ruby_to_html code
  h = Helpers.new
  h.html_markup_ruby(code)
end

def run!

def run!
  super
end