Skip to content

Commit

Permalink
feat(mkdocs_macros): ignore when creating a table (autowarefoundation…
Browse files Browse the repository at this point in the history
…#6231)

Signed-off-by: Yamato Ando <[email protected]>
  • Loading branch information
YamatoAndo authored Jan 31, 2024
1 parent 6142745 commit b415e2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mkdocs_macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ def format_param_range(param):
def extract_parameter_info(parameters, namespace=""):
params = []
for k, v in parameters.items():
if "$ref" in v.keys():
continue
if v["type"] != "object":
param = {}
param["Name"] = namespace + k
Expand Down

0 comments on commit b415e2e

Please sign in to comment.