def storytitle
end

def storytitle_page_title
  src = ""

  File::open(@storys[0],"r") {|f|
    src = convert(f.gets.chomp)
  }
  
  return src
end
