MCPcopy Index your code
hub / github.com/jsdoc/jsdoc / shouldProcessString

Function shouldProcessString

plugins/markdown.js:25–34  ·  view source on GitHub ↗
(tagName, text)

Source from the content-addressed store, hash-verified

23let excludeTags = [];
24
25function shouldProcessString(tagName, text) {
26 let shouldProcess = true;
27
28 // we only want to process `@author` and `@see` tags that contain Markdown links
29 if ( (tagName === 'author' || tagName === 'see') && !text.includes('[') ) {
30 shouldProcess = false;
31 }
32
33 return shouldProcess;
34}
35
36/**
37 * Process the markdown source in a doclet. The properties that should be processed are

Callers 1

processFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…