1.0.10 • Published 1 year ago

hexo-generator-search-lite v1.0.10

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year 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

1 year ago

1.0.10

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago