We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec6836a commit fa8f9c2Copy full SHA for fa8f9c2
generateDoc.js
@@ -1,9 +1,10 @@
1
var typedoc = require('typedoc');
2
3
async function main() {
4
- const app = await typedoc.Application.bootstrapWithPlugins();
5
- var gitLink = "https://github.com/ajaxorg/ace/tree/" + process.env.ACE_VERSION + "/{path}#L{line}";
6
- app.options.setValue("sourceLinkTemplate", gitLink);
+ const app = await typedoc.Application.bootstrapWithPlugins({
+ sourceLinkExternal: false,
+ sourceLinkTemplate: "https://github.com/ajaxorg/ace/tree/" + process.env.ACE_VERSION + "/{path}#L{line}",
7
+ });
8
9
const projectReflection = await app.convert();
10
0 commit comments