private static String loadMarkdown()

in markbook/src/main/java/org/apache/hadoop/gateway/markbook/MarkBook.java [84:93]


  private static String loadMarkdown( CommandLine command ) throws IOException {
    StringBuilder markdown = new StringBuilder();
    for( String inputFileName : command.getOptionValues( "i" ) ) {
      File inputFile = new File( inputFileName );
      log( "Loading markdown from " + inputFile.getAbsolutePath() );
      markdown.append( loadMarkdown( inputFile ) );
      markdown.append( SystemUtils.LINE_SEPARATOR );
    }
    return markdown.toString();
  }