File tree Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,14 @@ timeout: 300000
3333outputFormats :
3434 rss :
3535 baseName : rss
36+ llmmd :
37+ mediaType : " text/markdown"
38+ isPlainText : true
39+ notAlternative : false
40+ permalinkable : false
41+ path : " "
42+ rel : " llmmd"
43+ suffix : " .md"
3644
3745# We set the outputs explicitly to just "HTML" as otherwise they default to both
3846# "HTML" and "RSS", and we only want to generate RSS for the blog section -- not
@@ -45,6 +53,10 @@ outputs:
4553 - JSON
4654 section :
4755 - HTML
56+ - llmmd
57+ page :
58+ - HTML
59+ - llmmd
4860
4961taxonomies :
5062 tag : tags
Original file line number Diff line number Diff line change 1+ # {{ .Title }}
2+
3+ {{ with .Params.meta_desc }}
4+ > {{ . }}
5+ {{ end }}
6+
7+ {{ range .Params.sections }}
8+ ## {{ .heading }}
9+
10+ {{ with .description_md }}
11+ {{ . | markdownify }}
12+ {{ end }}
13+
14+ {{- if .cards }}
15+ {{ range .cards }}
16+ ### {{ .heading }}
17+
18+ {{ with .description }}
19+ {{ . }}
20+ {{ end }}
21+
22+ {{ with .link }}
23+ [ Read more] ({{ . | relURL }}index.md)
24+ {{ end }}
25+
26+ {{ end }}
27+ {{ end }}
28+
29+ {{- end }}
30+
31+ {{- if .Content }}
32+ {{ .Content }}
33+ {{- end }}
Original file line number Diff line number Diff line change 1+ # {{ .Title }}
2+
3+ {{- .RawContent -}}
You can’t perform that action at this time.
0 commit comments