private static String loadMarkdown()

in markbook/src/main/java/org/apache/hadoop/gateway/markbook/MarkBook.java [95:102]


  private static String loadMarkdown( File file ) throws IOException {
    String text = FileUtils.readFileToString( file );
    text = removeComments( text );
    text = replaceHeadings( text );
    text = replaceReferences( text );
    text = replaceIncludes( file, text );
    return text;
  }