
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
honkit-plugin-elasticsearch
Advanced tools
This plugin provides a backend for the search plugin.
Gitbook comes with default search option.
In order to use this plugin, need to disable lunr
plugins and add elasticsearch
as bellow:
"plugins": [
"-lunr",
"elasticsearch"
]
add the following plugin configurations in book.json
{
"pluginsConfig": {
"elasticsearch": {
"host" : "http://your-elasticsearch:9200",
"index" : "your-index",
"apiKey" : "your-apikey",
"maxResults" : 30,
}
}
}
Building your gitbook will generate a search index file in _book
directory.
Insert the index file into your elasticsearch.
curl -XPOST "http://your-elasticsearch:9200/your-index/_bulk" -H 'Content-Type: application/json' --data-binary @_book/search_index.json
You can specify explicit keywords for any page. When searching for these keywords, the page will rank higher in the results.
---
search:
keywords: ['keyword1', 'keyword2', 'etc.']
---
# My Page
This page will rank better if we search for 'keyword1'.
You can disable the indexing of a specific page by adding a YAML header to the page:
---
search: false
---
# My Page
This page is not indexed in Elasticsearch.
FAQs
GitBook search plugin for Elasticsearch
The npm package honkit-plugin-elasticsearch receives a total of 122 weekly downloads. As such, honkit-plugin-elasticsearch popularity was classified as not popular.
We found that honkit-plugin-elasticsearch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.