We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ecf71ac + 0ebfa0a commit 55a53bbCopy full SHA for 55a53bb
doc/generate-llms-full.ps1
@@ -39,7 +39,10 @@ if ($Llmstxt) {
39
40
# ── 2) Process all markdown files ───────────────────────────────────────────────
41
Get-ChildItem $InputFolder -Recurse -Filter '*.md' |
42
- Where-Object { $_.FullName -ne $headerResolved } | # skip header if in tree
+ Where-Object {
43
+ $_.FullName -ne $headerResolved -and
44
+ $_.FullName -notmatch '[\\/]\.github[\\/]'
45
+ } | # skip header if in tree and skip .github folder
46
Sort-Object FullName |
47
ForEach-Object {
48
$text = Get-Content $_.FullName -Raw
0 commit comments