Browse Source

Param docs explain how create (#10439)

This adds text to markdown output to explain how params are generated
sbg
Hamish Willee 7 years ago committed by Daniel Agar
parent
commit
dc878f43a8
  1. 2
      src/lib/parameters/px4params/markdownout.py

2
src/lib/parameters/px4params/markdownout.py

@ -4,7 +4,7 @@ import codecs @@ -4,7 +4,7 @@ import codecs
class MarkdownTablesOutput():
def __init__(self, groups):
result = ("# Parameter Reference\n"
"> **Note** **This list is auto-generated from the source code** and contains the most recent parameter documentation.\n"
"> **Note** **This list is auto-generated from the source code** (using `make parameters_metadata`) and contains the most recent parameter documentation.\n"
"\n")
for group in groups:
result += '## %s\n\n' % group.GetName()

Loading…
Cancel
Save