* feat: improve section filtering in llms.txt * fix(llms): correct where syntax and add page exclusion filter - Fix invalid Hugo template syntax in where clause - Use boolean comparison instead of string for llms param - Add filtering to recursive llms-section-tree template - Document llms exclusion feature in all languages (en, ja, fa, zh-cn) --------- Co-authored-by: Xin <xin@imfing.com>
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
# {{ .Site.Title }}
|
|
|
|
> {{ .Site.Params.description | default "" }}
|
|
|
|
{{ range where site.Sections "Params.llms" "ne" false }}
|
|
{{- template "llms-section-tree" dict "context" . "level" 2 }}
|
|
{{ end }}
|
|
|
|
{{- $rootPages := where (where site.RegularPages "Section" "") "Params.llms" "ne" false }}
|
|
{{- if $rootPages }}
|
|
## Root Pages
|
|
{{- range $rootPages }}
|
|
- [{{ .Title }}]({{ .Permalink }}): {{ .Summary | plainify | truncate 100 | strings.TrimSpace }}{{ if .Date }} - Published {{ .Date.Format "2006-01-02" }}{{ end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
---
|
|
Generated on {{ now.Format "2006-01-02 15:04:05 UTC" }}
|
|
Site: {{ .Site.BaseURL }}
|
|
|
|
{{- define "llms-section-tree" -}}
|
|
{{- $context := .context -}}
|
|
{{- $level := .level | default 2 -}}
|
|
{{- $headerHashes := strings.Repeat $level "#" -}}
|
|
{{- "\n" -}}
|
|
{{ $headerHashes }} {{ $context.Title }}
|
|
|
|
{{- range where $context.RegularPages "Params.llms" "ne" false }}
|
|
- [{{ .Title }}]({{ .Permalink }}): {{ .Summary | plainify | truncate 100 | strings.TrimSpace }}{{ if .Date }} - Published {{ .Date.Format "2006-01-02" }}{{ end }}
|
|
{{- end }}
|
|
|
|
{{- range where $context.Sections "Params.llms" "ne" false }}
|
|
{{ template "llms-section-tree" dict "context" . "level" (add $level 1) }}
|
|
{{- end }}
|
|
{{- end -}}
|