-
Notifications
You must be signed in to change notification settings - Fork 135
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
Suppress tag-source element? #28
Comments
I got the same problem and I think it is a bug of jaguarjs-jsdoc. jaguarjs-jsdoc/publish.js: |
Any update on this? |
I had the same problem when generating documentation for one single file. |
I had a similar desire. While waiting for an official fix, if you just want to hide the div.tag-source element you could do so with a grunt task: grunt.registerTask('docsPostProcessing', function () {
var done = this.async();
require('fs').appendFile('./[YourDocsDestination]/styles/jaguar.css', '.tag-source { display: none; }', function (err) {
if (err) {
grunt.fail.fatal(err);
return;
}
done();
});
});
grunt.registerTask('docs', ['jsdoc', 'docsPostProcessing']); |
Hi, I have the same issue. It seems it was fixed in "jsdoc default template" : jsdoc/jsdoc#590 Thanks ! |
Is there a way to suppress the output of
div.tag-source
?I'm using jaguarjs-jsdoc via
grunt-jsdoc
, and the tag source is showing the file path all the way down to the root of my OS, eg:<div class="tag-source">/Volumes/VRMiniBackup/Backups/Web/Bitbucket/ob/wp-content/themes/sitename/resources/dev/scripts/sitename.js, line 2787</div>
This makes the
div.tag-source
overlap the adjacent documentation at all but the widest viewport widths.Thanks.
The text was updated successfully, but these errors were encountered: