1.0.10 • Published 2 years ago

hexo-generator-search-lite v1.0.10

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Hexo-Generator-Search-Lite

Hexo-Generator-Search-Lite 插件,用于生成 json 格式的搜索数据

安装

npm i hexo-generator-search-lite -S

配置

search:
    path: /search.json
    optimize: false

数据

格式如下

  • optimize: false

    [
        {
            "path": "/path",
            "title": "Title",
            "date": "YYYY/M/D",
            "categories": [
                {
                    "name": "Category",
                    "path": "/categories/category"
                }
            ],
            "tags": [
                {
                    "name": "Tag",
                    "path": "/tags/tag"
                }
            ]
        }
    ]
  • optimize: true

    odata 的内容为 Title Categories Tags 分别去除空字符转小写后,再用空格连接

    [
        {
            "path": "/path",
            "odata": "title category tag"
        }
    ]
1.0.9

2 years ago

1.0.10

2 years ago

1.0.8

2 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago