File tree 2 files changed +3
-16
lines changed
2 files changed +3
-16
lines changed Original file line number Diff line number Diff line change 4
4
Documentation: https://wormhole.com/docs
5
5
6
6
# List of doc pages:
7
- Doc-Page: https://wormhole.com/docs/.github/pull-request-template
8
7
Doc-Page: https://wormhole.com/docs/build/applications/connect/configuration-v0
9
8
Doc-Page: https://wormhole.com/docs/build/applications/connect/configuration/configure-data
10
9
Doc-Page: https://wormhole.com/docs/build/applications/connect/configuration/configure-theme
@@ -110,19 +109,6 @@ Doc-Page: https://wormhole.com/docs/tutorials/index
110
109
111
110
# Full content for each doc page
112
111
113
- Doc-Content: https://wormhole.com/docs/.github/pull-request-template
114
- --- BEGIN CONTENT ---
115
- ### Description
116
-
117
- Please explain the changes this PR addresses here.
118
-
119
- ### Checklist
120
-
121
- - [ ] **Required** - I have added a label to this PR 🏷️
122
- - [ ] **Required** - I have run my changes through Grammarly
123
- - [ ] If pages have been moved, I have created redirects in the `wormhole-mkdocs` repo
124
- --- END CONTENT ---
125
-
126
112
Doc-Content: https://wormhole.com/docs/.snippets/text/build/contract-integrations/cctp/DepositForBurn-event
127
113
--- BEGIN CONTENT ---
128
114
??? child "Event Arguments"
Original file line number Diff line number Diff line change @@ -26,8 +26,9 @@ def get_all_markdown_files(directory):
26
26
if root == directory :
27
27
continue
28
28
29
- # Skip .github folder - (remove them from dirs so os.walk won't recurse into them)
30
- dirs [:] = [d for d in dirs if d not in ['.github' ]]
29
+ # Skip '.github'
30
+ if '.github' in root .split (os .sep ):
31
+ continue
31
32
32
33
for file in files :
33
34
if file .endswith (('.md' , '.mdx' )):
You can’t perform that action at this time.
0 commit comments