md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
17 lines (16 loc) • 482 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var loadDictElement = {
factory: function (_a) {
var replaceWith = _a.replaceWith, logger = _a.logger;
return function (ref) {
logger.log("Warning - Missing ref: " + ref);
return "" + replaceWith;
};
},
locateDeps: {
replaceWith: 'MTB_MISSING_REF_VALUE_REPLACEMENT',
logger: 'logger',
}
};
exports.default = loadDictElement;