remove .idea

This commit is contained in:
Aleksey Chichenkov 2018-09-20 13:53:30 +03:00
parent 91736dbbaf
commit e5798a7576
6 changed files with 29 additions and 25 deletions

View file

@ -9,12 +9,16 @@ var path = require('jsdoc/path');
var taffy = require('taffydb').taffy;
var template = require('jsdoc/template');
var util = require('util');
var pct = require('./static/scripts/parse_complex_type');
var htmlsafe = helper.htmlsafe;
var linkto = helper.linkto;
var linkto = pct.linkto;
var resolveAuthorLinks = helper.resolveAuthorLinks;
var hasOwnProp = Object.prototype.hasOwnProperty;
var data;
var view;

View file

@ -0,0 +1,19 @@
/**
* Created by Aleksey Chichenkov <a.chichenkov@initi.ru> on 9/20/18.
*/
var helper = require('jsdoc/util/templateHelper');
// var linkto = helper.linkto;
var linkto = function (_id, _alias, _class) {
// ns.longname, ns.name, "menu-title"
var rx = /(.*?)\((.*)\)/im;
// /_id.match(rx);
return helper.linkto(_id, _alias, _class);
};
module.exports = {
linkto: linkto
};