diff --git a/utils/doclint/xmlDocumentation.js b/utils/doclint/xmlDocumentation.js
index f480b51449..37c1858fe0 100644
--- a/utils/doclint/xmlDocumentation.js
+++ b/utils/doclint/xmlDocumentation.js
@@ -103,7 +103,12 @@ function _wrapAndEscape(node, maxColumns = 0) {
lines.push(text);
};
- const text = node.text.replace(/[^\[]`([^\]]*[^\[])`[^\]]/g, (m, g1) => ` ${g1} `);
+
+ let text = node.text;
+ text = text.replace(/`([^`]*)`/g, (match, code) => `${code.replace('<', '<').replace('>', '>')}`);
+ text = text.replace(/\[(.*?)\]\((.*?\))/g, (match, linkName, linkUrl) => {
+ return `${linkName}`;
+ });
const words = text.split(' ');
let line = '';
for (let i = 0; i < words.length; i++) {