File tree 4 files changed +53
-4
lines changed
4 files changed +53
-4
lines changed Original file line number Diff line number Diff line change 48
48
details .toc ul li a {
49
49
@apply no-underline text-gray-700 dark:text-gray-200 text-base;
50
50
}
51
+
52
+ a : empty {
53
+ display : none;
54
+ }
51
55
}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function openSearch() {
31
31
loadSearch ( ) ; // loads our json data and builds fuse.js search index
32
32
firstRun = false ; // let's never do this again
33
33
}
34
-
34
+
35
35
//Close the mobile menu when search is click.
36
36
mobileMenu . classList . toggle ( 'hidden' ) ;
37
37
@@ -158,10 +158,10 @@ function executeSearch(term) {
158
158
159
159
for ( let item in results . slice ( 0 , 5 ) ) { // only show first 5 results
160
160
const title = '<div class="text-2xl mb-2 font-bold">' + results [ item ] . item . title + '</div>' ;
161
- const date = results [ item ] . item . date ? '<div><em class="">' + new Date ( results [ item ] . item . date ) . toUTCString ( ) . substring ( 0 , 16 ) + '</em></div>' : '' ;
162
- const contents = '<div>' + results [ item ] . item . contents + '</div>' ;
161
+ const date = results [ item ] . item . date ? '<div><em class="px-4 ">' + new Date ( results [ item ] . item . date ) . toUTCString ( ) . substring ( 0 , 16 ) + '</em></div>' : '' ;
162
+ const contents = '<div class="prose px-4" >' + results [ item ] . item . contents + '</div>' ;
163
163
164
- searchitems = searchitems + '<li><a class="block mb-2 px-4 py-2 rounded pb-2 border-b border-gray-200 dark:border-gray-600 focus:bg-gray-100 dark:focus:bg-gray-700 focus:outline-none" href="' + results [ item ] . item . permalink + '" tabindex="0">' + title + date + contents + '</a> </li>' ;
164
+ searchitems = searchitems + '<li><a class="block mb-2 px-4 py-2 rounded pb-2 border-b border-gray-200 dark:border-gray-600 focus:bg-gray-100 dark:focus:bg-gray-700 focus:outline-none" href="' + results [ item ] . item . permalink + '" tabindex="0">' + title + '</a>' + date + contents + '</li>' ;
165
165
}
166
166
resultsAvailable = true ;
167
167
}
Original file line number Diff line number Diff line change @@ -97,6 +97,20 @@ DefaultContentLanguageInSubdir = true
97
97
# Enable search in header
98
98
enableSearch = true
99
99
100
+ # Option to customize the search parameters of a page
101
+ # Below are the supported options; Note that including entire content
102
+ # may slowdown the loading of search results
103
+ # Title of page is included by default
104
+ searchKeys = [
105
+ " tags" ,
106
+ " date" ,
107
+ " categories" ,
108
+ " summary" ,
109
+ " content" ,
110
+ " link" ,
111
+ " author"
112
+ ]
113
+
100
114
# Custom copyright - optional
101
115
copyright = " Copyright © 2021 - Katheryn Fox · All rights reserved"
102
116
favicon = " /favicon.svg"
Original file line number Diff line number Diff line change 1
1
{{- $.Scratch.Add "index" slice - }}
2
2
{{- range .Site.RegularPages - }}
3
+ {{- if .Site.Params.searchKeys - }}
4
+ {{ $page := . }}
5
+ {{ $dict := dict "title" $page.Title }}
6
+ {{- range .Site.Params.searchKeys - }}
7
+ {{- if (eq . "tags") - }}
8
+ {{ $dict = merge $dict (dict "tags" $page.Params.tags) }}
9
+ {{- end - }}
10
+ {{- if (eq . "date") - }}
11
+ {{ $dict = merge $dict (dict "date" $page.Params.Lastmod) }}
12
+ {{- end - }}
13
+ {{- if (eq . "categories") - }}
14
+ {{ $dict = merge $dict (dict "categories" $page.Params.categories) }}
15
+ {{- end - }}
16
+ {{- if (eq . "author") - }}
17
+ {{ $dict = merge $dict (dict "author" $page.Params.author) }}
18
+ {{- end - }}
19
+ {{- if (eq . "summary") - }}
20
+ {{ $dict = merge $dict (dict "contents" $page.Summary) }}
21
+ {{- end - }}
22
+ {{- if (eq . "contents") - }}
23
+ {{ $dict = merge $dict (dict "contents" $page.Content) }}
24
+ {{- end - }}
25
+ {{- if (eq . "link") - }}
26
+ {{ $dict = merge $dict (dict "permalink" $page.Permalink) }}
27
+ {{- end - }}
28
+
29
+ {{- end - }}
30
+ {{- $.Scratch.Add "index" $dict - }}
31
+ {{- else - }}
3
32
{{- $.Scratch.Add "index" (dict "title" .Title "tags" .Params.tags "date" .Params.Lastmod "categories" .Params.categories "contents" .Summary "permalink" .Permalink) - }}
4
33
{{- end - }}
34
+
35
+ {{- end - }}
5
36
{{- $.Scratch.Get "index" | jsonify - }}
You can’t perform that action at this time.
0 commit comments