Skip to content

Commit

Permalink
feat(mkdocs_macros): ignore when creating a table
Browse files Browse the repository at this point in the history
Signed-off-by: Yamato Ando <[email protected]>
  • Loading branch information
YamatoAndo committed Jan 30, 2024
1 parent 47f265d commit d816084
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 d816084

Please sign in to comment.