quoteField(yamlTree, "title");
quoteField(yamlTree, "author");
quoteField(yamlTree, "date");
// Order the fields more semantically
yamlTree.reorder(
Arrays.asList("title", "author", "date", "output"));
// Bring the chosen format to the top
if (format != null)
yamlTree.reorder(Arrays.asList(format));