File tree 6 files changed +43
-15
lines changed
6 files changed +43
-15
lines changed Original file line number Diff line number Diff line change 1
1
Brzozowski
2
+ Hasicorp
2
3
Jaden
3
4
Kalt
4
5
Leemis
Original file line number Diff line number Diff line change 1
1
external-sources =true
2
2
source-path =SCRIPTDIR
3
+ disable =SC2002
4
+ # ^ ignore useless cat
Original file line number Diff line number Diff line change 1
1
{
2
- "editor.formatOnSave" : true ,
2
+ "editor.formatOnSave" : false ,
3
3
"evenBetterToml.formatter.reorderKeys" : true ,
4
4
"evenBetterToml.formatter.reorderArrays" : true ,
5
5
"evenBetterToml.formatter.indentTables" : true ,
11
11
"evenBetterToml.formatter.alignComments" : true ,
12
12
"[toml]" : {
13
13
"editor.defaultFormatter" : " tamasfe.even-better-toml"
14
- }
14
+ },
15
+ "[html]" : {
16
+ "editor.formatOnPaste" : false
17
+ },
18
+ "[markdown]" : {
19
+ "editor.formatOnSave" : true ,
20
+ "editor.unicodeHighlight.ambiguousCharacters" : false ,
21
+ "editor.unicodeHighlight.invisibleCharacters" : false ,
22
+ "diffEditor.ignoreTrimWhitespace" : false ,
23
+ "editor.wordWrap" : " on" ,
24
+ "editor.quickSuggestions" : {
25
+ "comments" : " off" ,
26
+ "strings" : " off" ,
27
+ "other" : " off"
28
+ },
29
+ "cSpell.fixSpellingWithRenameProvider" : true ,
30
+ "cSpell.advanced.feature.useReferenceProviderWithRename" : true ,
31
+ "cSpell.advanced.feature.useReferenceProviderRemove" : " /^#+\\ s/"
32
+ },
33
+ "workbench.colorTheme" : " Quiet Light"
15
34
}
Original file line number Diff line number Diff line change 23
23
hugo
24
24
lychee
25
25
shellcheck
26
+ pagefind
26
27
] ;
27
28
} ;
28
29
}
Original file line number Diff line number Diff line change 1
1
{{ define "main" }}
2
- < main >
3
- < h1 > {{ .Title }} </ h1 >
4
-
5
- < span class ="bg-info "> Published on < time > {{ .Date | time.Format "2006-01-02" }}</ time > </ span >
2
+ < main >
3
+ < h1 > {{ .Title }} </ h1 >
6
4
5
+ < span class ="bg-info "> Published on < time > {{ .Date | time.Format "2006-01-02" }}</ time > </ span >
6
+
7
+ {{ if isset .Params "toc" }}
8
+ {{ if .Params.toc }}
9
+ {{ .TableOfContents }}
10
+ {{ end }}
11
+ {{ else }}
7
12
{{ .TableOfContents }}
8
-
9
- {{ .Content }}
10
- </ main >
13
+ {{ end }}
14
+ {{ .Content }}
15
+ </ main >
11
16
{{ end }}
You can’t perform that action at this time.
0 commit comments