remove .idea
This commit is contained in:
parent
91736dbbaf
commit
e5798a7576
6 changed files with 29 additions and 25 deletions
|
@ -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;
|
||||
|
||||
|
|
19
templates/initi/static/scripts/parse_complex_type.js
Normal file
19
templates/initi/static/scripts/parse_complex_type.js
Normal 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
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue