Skip to content

Commit

Permalink
change to first level heading
Browse files Browse the repository at this point in the history
  • Loading branch information
mshadbolt committed Nov 14, 2023
1 parent 7b3535d commit 9ebf9bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions generate_mapping_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ def main():

updated_mapping_functions = []
for line in mapping_functions_lines:
if line.startswith("## Standard Functions Index"):
if line.startswith("# Standard Functions Index"):
break
else:
updated_mapping_functions.append(line)
updated_mapping_functions.append("## Standard Functions Index\n")
updated_mapping_functions.append("# Standard Functions Index\n")
updated_mapping_functions.append(mappings_docs)
with open("mapping_functions.md", "w+") as f:
f.writelines(updated_mapping_functions)
Expand Down
2 changes: 1 addition & 1 deletion mapping_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ represents the following JSON dict:
```

## Standard Functions Index
# Standard Functions Index

# <kbd>module</kbd> `mappings`

Expand Down

0 comments on commit 9ebf9bc

Please sign in to comment.