You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,3 +87,41 @@ You can reuse the content of any file in the includes directory using the follow
87
87
```md
88
88
{{< include "filename.md" >}}
89
89
```
90
+
91
+
### Hugo Config
92
+
93
+
We have several **optional** custom options to add to your config `toml` or `yaml`.
94
+
95
+
### `searchOnPage`
96
+
Option to add a coveo searchbar on top of the coveo filters on a search results page.
97
+
98
+
Example:
99
+
```toml
100
+
[params]
101
+
searchOnPage = true
102
+
```
103
+
### `featureFlags`
104
+
Options to add feature flags. Syntax denoted by prefix `disable_`.
105
+
106
+
Example:
107
+
```toml
108
+
[params]
109
+
...
110
+
[params.featureFlags]
111
+
disable_coveo = true
112
+
disable_qualtrics = true
113
+
```
114
+
115
+
### `typographer`
116
+
Options to translate plain ASCII punctuation characters into typographic-punctuation HTML entities. More info [here](https://gohugo.io/configuration/markup/#typographer).
0 commit comments