I have had a quick look for similar questions but I couldn't find anything, so apologies if this is a duplicate.
Firstly, I am looking for a way to grab information from external source files (i.e. query1.sql) which will then be formatted with language-specific highlighting (SQL in this case).
Secondly, I would like to grab information from an external csv file and have it formatted into a table.
I am using external files so that they can be updated automatically by an Automated Build process so that we have documentation that is always up to date.
As an example, I am looking for something like this:
Using the below script:
select *
from table;
We receive the output:
1 | 2 | 3
_________
a | b | c
d | e | f
