File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
APIJSON-Java-Server/APIJSONBoot-MultiDataSource/src/main/resources/static/api/js Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7528,7 +7528,8 @@ Content-Type: ` + contentType) + (StringUtil.isEmpty(headerStr, true) ? '' : hea
75287528 return;
75297529 }
75307530
7531- var answer = StringUtil.get(typeof data2 == 'string' ? data2 : (data instanceof Array ? data2.join() : JSON.stringify(data2)));
7531+ var answer = StringUtil.get(typeof data2 == 'string' ? data2 : (data instanceof Array ? data2.join() : JSON.stringify(data2)))
7532+ .replaceAll('/wiki/Tencent/APIJSON#', 'https://deepwiki.com/Tencent/APIJSON/').replaceAll('/wiki/TommyLemon/APIAuto#', 'https://deepwiki.com/TommyLemon/APIAuto/');
75327533 App.view = 'markdown';
75337534 vOutput.value += answer;
75347535 markdownToHTML(vOutput.value)
@@ -7561,9 +7562,12 @@ Content-Type: ` + contentType) + (StringUtil.isEmpty(headerStr, true) ? '' : hea
75617562 continue;
75627563 }
75637564
7564- answer += '\n' + StringUtil.trim(typeof data2 == 'string' ? data2 : (data2 instanceof Array ? data2.join() : JSON.stringify(data2)));
7565+ answer += '\n' + StringUtil.trim(typeof data2 == 'string' ? data2 : (data2 instanceof Array ? data2.join() : JSON.stringify(data2)))
7566+ .replaceAll('/wiki/Tencent/APIJSON#', 'https://deepwiki.com/Tencent/APIJSON/').replaceAll('/wiki/TommyLemon/APIAuto#', 'https://deepwiki.com/TommyLemon/APIAuto/');
75657567 }
75667568
7569+ answer += '\n<br/>\n';
7570+
75677571 App.view = 'markdown';
75687572 vOutput.value = answer;
75697573 markdownToHTML(answer); // vOutput.value)
You can’t perform that action at this time.
0 commit comments