-
Notifications
You must be signed in to change notification settings - Fork 710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to not generate source file links? #501
Comments
You can do this by modifying the theme if you'd like. That's the route we took. In the theme project, you'll want to update src/default/partials/member.declaration.hbs and src/default/partials/member.signature.body.hbs. See the following commit: Don't include source information. |
Closing in favor of #808 as it seems to have more visibility. |
A middleground option that allows you to keep "defined in", but generates a less noisy output is to output just the filename and line in <li>Defined in {{fileName}}:{{line}}</li> It would be even nicer if there was a feature that generated the link from the master branch instead of from the unique commit. That way it would only generate changes if the file structure changed and unless you were keeping multiple versions of documentation it would just work. |
You can specify |
Is there a setting to not have typedoc generate source file links (ie. The "Defined in
URL_to_source _and_line_number
")?I have no need for this feature and it results in very noisy commits whenever I run typedoc and put the output into
/docs
onmaster
branch because blob URLs for referenced sources changes every timeThe text was updated successfully, but these errors were encountered: