fix adds support for Flatdoc.file([ 'file1.md', 'file2.md' ])
for now.
Flatdoc.file = function(locations) {
function loadData(locations, response, callback) {
if (locations.length === 0) callback(null, response);
else $.get(locations.shift()).done(function (data) {