1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 | 'use strict';
|
8 |
|
9 | var config = global.env.conf.markdown || {};
|
10 | var defaultTags = [
|
11 | 'author',
|
12 | 'classdesc',
|
13 | 'description',
|
14 | 'exceptions',
|
15 | 'params',
|
16 | 'properties',
|
17 | 'returns',
|
18 | 'see'
|
19 | ];
|
20 | var hasOwnProp = Object.prototype.hasOwnProperty;
|
21 | var parse = require('jsdoc/util/markdown').getParser();
|
22 | var tags = [];
|
23 | var excludeTags = [];
|
24 |
|
25 | function shouldProcessString(tagName, text) {
|
26 | var shouldProcess = true;
|
27 |
|
28 |
|
29 | if ( (tagName === 'author' || tagName === 'see') && text.indexOf('[') === -1 ) {
|
30 | shouldProcess = false;
|
31 | }
|
32 |
|
33 | return shouldProcess;
|
34 | }
|
35 |
|
36 |
|
37 |
|
38 |
|
39 |
|
40 |
|
41 |
|
42 | function process(doclet) {
|
43 | tags.forEach(function(tag) {
|
44 | if ( !hasOwnProp.call(doclet, tag) ) {
|
45 | return;
|
46 | }
|
47 |
|
48 | if (typeof doclet[tag] === 'string' && shouldProcessString(tag, doclet[tag]) ) {
|
49 | doclet[tag] = parse(doclet[tag]);
|
50 | }
|
51 | else if ( Array.isArray(doclet[tag]) ) {
|
52 | doclet[tag].forEach(function(value, index, original) {
|
53 | var inner = {};
|
54 | inner[tag] = value;
|
55 | process(inner);
|
56 | original[index] = inner[tag];
|
57 | });
|
58 | }
|
59 | else if (doclet[tag]) {
|
60 | process(doclet[tag]);
|
61 | }
|
62 | });
|
63 | }
|
64 |
|
65 |
|
66 | if (config.tags) {
|
67 | tags = config.tags.slice();
|
68 | }
|
69 |
|
70 | if (config.excludeTags) {
|
71 | excludeTags = config.excludeTags.slice();
|
72 | }
|
73 | defaultTags.forEach(function(tag) {
|
74 | if (excludeTags.indexOf(tag) === -1 && tags.indexOf(tag) === -1) {
|
75 | tags.push(tag);
|
76 | }
|
77 | });
|
78 |
|
79 | exports.handlers = {
|
80 | |
81 |
|
82 |
|
83 |
|
84 | newDoclet: function(e) {
|
85 | process(e.doclet);
|
86 | }
|
87 | };
|