Add configuration override detail in options
This commit is contained in:
parent
49a4e4b4b8
commit
9419fbb77b
@ -96,7 +96,11 @@ class DocGenerator:
|
|||||||
ks = list(self.docs.keys())
|
ks = list(self.docs.keys())
|
||||||
ks.sort()
|
ks.sort()
|
||||||
for k in ks:
|
for k in ks:
|
||||||
s += str(self.docs[k]) + "\n"
|
s += str(self.docs[k])
|
||||||
|
env = self.envs.get(k)
|
||||||
|
if env != None:
|
||||||
|
s += ' Overrides the \\fI' + env + '\\fP configuration setting.'
|
||||||
|
s += "\n"
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
|
||||||
|
@ -60,7 +60,6 @@ The source code of the tool this documentation describes is licensed under the G
|
|||||||
|
|
||||||
.SH COPYRIGHT
|
.SH COPYRIGHT
|
||||||
|
|
||||||
.P
|
|
||||||
Louis Holbrook <dev@holbrook.no> (https://holbrook.no)
|
Louis Holbrook <dev@holbrook.no> (https://holbrook.no)
|
||||||
PGP: 59A844A484AC11253D3A3E9DCDCBD24DD1D0E001
|
PGP: 59A844A484AC11253D3A3E9DCDCBD24DD1D0E001
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user