this.convert = function()

in assets/js/API.js [18:23]


    this.convert = function(file, onSuccess) {
        this.read(file, function(data){
            var html = markdown.toHTML(data, 'Maruku');
            onSuccess(html);
        });
    }