mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-01 19:07:45 +08:00
Param docs explain how create (#10439)
This adds text to markdown output to explain how params are generated
This commit is contained in:
committed by
Daniel Agar
parent
56723b2ece
commit
dc878f43a8
@@ -4,7 +4,7 @@ import codecs
|
|||||||
class MarkdownTablesOutput():
|
class MarkdownTablesOutput():
|
||||||
def __init__(self, groups):
|
def __init__(self, groups):
|
||||||
result = ("# Parameter Reference\n"
|
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")
|
"\n")
|
||||||
for group in groups:
|
for group in groups:
|
||||||
result += '## %s\n\n' % group.GetName()
|
result += '## %s\n\n' % group.GetName()
|
||||||
|
|||||||
Reference in New Issue
Block a user