** Hexo 主题:最为静态页面最为鸡肋的就是没有搜索功能,查找文件夹十分困难。第三方插件不稳定。今天就来实现内部功能。
插件
hexo-generator-json-content搜索功能
jsonContent:
meta: false
pages: false
posts:
title: true
date: true
path: true
text: false
raw: false
content: true
slug: true
updated: false
comments: true
link: false
author: true
permalink: true
excerpt: false
categories: true
tags: true
插件会自动生成content.json文件,对文件数据进行查询。
动态获取数据
1 | // 动态获取数据 |
1 | var searchTool = { |