Search allows users to search documents by name or tags. The search button is displayed inside the header bar.
Inside doczrc.js
file there is a themeConfig.search
option to enable or disable search.
//doczrc.jsexport default {themeConfig: {search: true,},};
Name | Type | Default | Description |
---|---|---|---|
search | boolean | true | Specify if the search should be shown. |
Tags are additional information inside each document that are searchable. They can be separated with commas.
---name: Footerroute: /ui/footermenu: UItags: ui, footer, footer config, theme, user interface---# My mdx file
Name | Type | Default | Description |
---|---|---|---|
tags | string | Tags separated by commas or spaces. |