We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8452e07 commit b6fb1e2Copy full SHA for b6fb1e2
.github/workflows/documentation.yml
@@ -7,6 +7,7 @@ on:
7
paths:
8
- 'Sources/**/*.swift'
9
- .github/workflows/documentation.yml
10
+ workflow_dispatch:
11
12
jobs:
13
document:
@@ -75,12 +76,12 @@ jobs:
75
76
foreach ($module in "CoreGraphics","SwiftWin32","SwiftWin32UI") {
77
Get-ChildItem -Path site\$module -Recurse -File -Include "*.md" -Exclude _Footer.md,_Sidebar.md,index.md | ForEach-Object {
78
Set-Content $_.FullName -value @"
- ---
79
- layout: default
80
- title: $(_.BaseName -replace '(?<=\w)_','.')
81
- parent: $($_.Directory.BaseName)
82
83
- "@,$(Get-Content $_.FullName)
+---
+layout: default
+title: $(_.BaseName -replace '(?<=\w)_','.')
+parent: $($_.Directory.BaseName)
84
+"@,$(Get-Content $_.FullName)
85
}
86
87
0 commit comments