You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arch-wiki-man/lib/util.js

11 lines
273 B
JavaScript

'use strict';
var path = require('path');
exports.getArticlePath = getArticlePath;
function getArticlePath(relativeArticlePath) {
var absoluteArticlePath = path.resolve('node_modules', 'arch-wiki-md-repo', 'wiki', relativeArticlePath);
return absoluteArticlePath;
}