搜索
主题对 vuepress-plugin-search-pro
@vuepress/plugin-docsearch
和 @vuepress/plugin-search
提供了内置支持。你只需要安装并配置所需的搜索插件,就能够在导航栏获得一个搜索框。
使用 @vuepress/plugin-docsearch
你需要 提交你的网站 URL 来加入 DocSearch 项目。
当你的索引成功创建后, DocSearch 团队会将 apiKey 和 indexName 发送到你的邮箱。接下来,你就可以配置此插件,在 VuePress 中启用 DocSearch 了。
或者,你也可以 运行你自己的爬虫 来创建索引,然后使用你自己的 appId, apiKey 和 indexName 来配置此插件。
为了正常的使用插件,你需要按照下列要求正确设置 Algolia Crawler。
前往 Algolia Crawler 来更新你的爬虫配置。配置爬虫
以下是配置选项和说明:
new Crawler({ appId: "YOUR_APP_ID", apiKey: "YOUR_API_KEY", rateLimit: 8, startUrls: [ // 这是 Algolia 开始抓取网站的初始地址 // 如果你的网站被分为数个独立部分,你可能需要在此设置多个入口链接 "https://YOUR_WEBSITE_URL/", ], sitemaps: [ // 如果你在使用 Sitemap 插件 (如: @vuepress/plugin-sitemap),你可以提供 Sitemap 链接 "https://YOUR_WEBSITE_URL/sitemap.xml", ], ignoreCanonicalTo: false, exclusionPatterns: [ // 你可以通过它阻止 Algolia 抓取某些 URL ], discoveryPatterns: [ // 这是 Algolia 抓取 URL 的范围 "https://YOUR_WEBSITE_URL/**", ], // 爬虫执行的计划时间,可根据文档更新频率设置 schedule: "at 02:00 every 1 day", actions: [ // 你可以拥有多个 action,特别是你在一个域名下部署多个文档时 { // 使用适当的名称为索引命名 indexName: "YOUR_INDEX_NAME", // 索引生效的路径 pathsToMatch: ["https://YOUR_WEBSITE_URL/**"], // 控制 Algolia 如何抓取你的站点 recordExtractor: ({ $, helpers }) => { // 以下是适用于 vuepress-theme-hope 的默认选项选项 return helpers.docsearch({ recordProps: { lvl0: { selectors: [".vp-sidebar-link.active", "[vp-content] h1"], defaultValue: "Documentation", }, lvl1: "[vp-content] h1", lvl2: "[vp-content] h2", lvl3: "[vp-content] h3", lvl4: "[vp-content] h4", lvl5: "[vp-content] h5", lvl6: "[vp-content] h6", content: "[vp-content] p, [vp-content] li", }, recordVersion: "v3", }); }, }, ], initialIndexSettings: { // 控制索引如何被初始化,这仅当索引尚未生成时有效 // 你可能需要在修改后手动删除并重新生成新的索引 YOUR_INDEX_NAME: { attributesForFaceting: ["type", "lang"], attributesToRetrieve: ["hierarchy", "content", "anchor", "url"], attributesToHighlight: ["hierarchy", "hierarchy_camel", "content"], attributesToSnippet: ["content:10"], camelCaseAttributes: ["hierarchy", "hierarchy_radio", "content"], searchableAttributes: [ "unordered(hierarchy_radio_camel.lvl0)", "unordered(hierarchy_radio.lvl0)", "unordered(hierarchy_radio_camel.lvl1)", "unordered(hierarchy_radio.lvl1)", "unordered(hierarchy_radio_camel.lvl2)", "unordered(hierarchy_radio.lvl2)", "unordered(hierarchy_radio_camel.lvl3)", "unordered(hierarchy_radio.lvl3)", "unordered(hierarchy_radio_camel.lvl4)", "unordered(hierarchy_radio.lvl4)", "unordered(hierarchy_radio_camel.lvl5)", "unordered(hierarchy_radio.lvl5)", "unordered(hierarchy_radio_camel.lvl6)", "unordered(hierarchy_radio.lvl6)", "unordered(hierarchy_camel.lvl0)", "unordered(hierarchy.lvl0)", "unordered(hierarchy_camel.lvl1)", "unordered(hierarchy.lvl1)", "unordered(hierarchy_camel.lvl2)", "unordered(hierarchy.lvl2)", "unordered(hierarchy_camel.lvl3)", "unordered(hierarchy.lvl3)", "unordered(hierarchy_camel.lvl4)", "unordered(hierarchy.lvl4)", "unordered(hierarchy_camel.lvl5)", "unordered(hierarchy.lvl5)", "unordered(hierarchy_camel.lvl6)", "unordered(hierarchy.lvl6)", "content", ], distinct: true, attributeForDistinct: "url", customRanking: [ "desc(weight.pageRank)", "desc(weight.level)", "asc(weight.position)", ], ranking: [ "words", "filters", "typo", "attribute", "proximity", "exact", "custom", ], highlightPreTag: '<span class="algolia-docsearch-suggestion--highlight">', highlightPostTag: "</span>", minWordSizefor1Typo: 3, minWordSizefor2Typos: 7, allowTyposOnNumericTokens: false, minProximity: 1, ignorePlurals: true, advancedSyntax: true, attributeCriteriaComputedByMinProximity: true, removeWordsIfNoResults: "allOptional", }, }, });
注意
Crawler 配置中
initialIndexSettings.YOUR_INDEX_NAME.attributesForFaceting
字段必须包含"lang"
,否则此插件将无法正常工作。安装
@vuepress/plugin-docsearch
pnpmpnpm add -D @vuepress/plugin-docsearch@next
yarnyarn add -D @vuepress/plugin-docsearch@next
npmnpm i -D @vuepress/plugin-docsearch@next
通过
plugins.docsearch
选项配置插件import { hopeTheme } from "vuepress-theme-hope"; export default { theme: hopeTheme({ plugins: { docsearch: { // 你的选项 // appId, apiKey 和 indexName 是必填的 }, }, }), };
更多
关于 DocSearch 搜索插件的可用选项,详见 插件文档。
使用 vuepress-plugin-search-pro
安装
vuepress-plugin-search-pro
pnpmpnpm add -D vuepress-plugin-search-pro
yarnyarn add -D vuepress-plugin-search-pro
npmnpm i -D vuepress-plugin-search-pro
在主题选项中配置
plugins.searchPro
。你可以将
plugins.searchPro
设置为true
来直接启用它,或者将其设置为一个对象来自定义插件。import { hopeTheme } from "vuepress-theme-hope"; export default { theme: hopeTheme({ plugins: { searchPro: true, // searchPro: { // 插件选项 // }, }, }), };
更多
关于搜索插件的可用选项,详见 插件文档
使用 @vuepress/plugin-search
安装
@vuepress/plugin-search
pnpmpnpm add -D @vuepress/plugin-search@next
yarnyarn add -D @vuepress/plugin-search@next
npmnpm i -D @vuepress/plugin-search@next
Customize
plugins.search
in theme options.在主题选项中配置
plugins.search
。import { hopeTheme } from "vuepress-theme-hope"; export default { theme: hopeTheme({ plugins: { search: true, // search: { // 插件选项 // }, }, }), };
更多
关于搜索插件的可用选项,详见 插件文档。