I need to remove the entire footer from my DB documentation
kevinjpereira
Posts: 2 Bronze 1
in SQL Doc
Hello,
I am working on generating markdown documentation for one of our databases looking to house the documentation within the database repository.
The issue that I am running into is that I am unable to remove the "Created: <date>" from the footer in the same way that I am able to remove the author and copyright text.
The reason that I am trying to remove this string is so that the only .md files produced by SQL Doc are those that correspond to the objects that have changed since the last commit and not every object in the database. This way I don't end up having to pull request thousands of .md files where the only change is the "Created: <date>" in the footer.
Can you help?
I am working on generating markdown documentation for one of our databases looking to house the documentation within the database repository.
The issue that I am running into is that I am unable to remove the "Created: <date>" from the footer in the same way that I am able to remove the author and copyright text.
The reason that I am trying to remove this string is so that the only .md files produced by SQL Doc are those that correspond to the objects that have changed since the last commit and not every object in the database. This way I don't end up having to pull request thousands of .md files where the only change is the "Created: <date>" in the footer.
Can you help?
Tagged:
Answers
Given that removing the datetime from the footer is not currently supported the first alternative that I can think of is looking to programmatically document each individual object included in the commit rather than documenting the entire database every time. However, I am not sure if that is a possibility as I don't believe that SQL Doc currently has the ability to document individual objects. Could you confirm?