Markdown静态文档服务器,提供内容目录、搜索功能
所有文档都缓存在内存中,针对少量文档(博客、接口文档)场景优化
方式1. 下载markup.jar,命令行启动
java -jar markup.jar
# 根据提示输入
git: https://github.com/canghailan/notes.git # Git仓库地址
version: '2'
services:
markup:
image: registry.cn-hangzhou.aliyuncs.com/yitong/markup
environment:
- 'MARKUP_GIT=https://github.com/canghailan/notes.git' # Git仓库地址
启动后,通过 http://localhost 即可访问,默认UI仅提供文件浏览、搜索功能,建议在Git仓库中提供index.html覆盖默认UI
配置文件与markup.jar放在同一目录下
markup.jar
markup.yml
配置项:
git: https://github.com/canghailan/notes.git
port: 80 # 可选,默认80
MARKUP_GIT
MARKUP_PORT
java -jar markup.jar
git:
启动后将会自动保存到 markup.yml
GET /
或者
GET /index.html
与版本库文件路径一致
GET /**/*.*
GET /.toc
搜索参数:
- p 目录
- q 关键词,有关键词结果按相关性排序,无关键词结果按文件创建时间倒序排序
- n 分页大小
- c 分页标识
搜索结果:
- list 搜索数据
- cursor 分页标识,null表示已到最后一页
GET /.s?p=&q=&n=
{
"list": [],
"cursor": "CURSOR"
}
GET /.s?c=CURSOR
{
"list": [],
"cursor": ""
}
GET /.updater
或者
POST /.updater
- jgit - 从远程Git仓库读取文件
- commonmark - Markdown转HTML
- lucene - 文档存储、搜索
- HanLP、hanlp-lucene-plugin - 中文分词、拼音
- jackson - YAML配置文件、HTTP接口
- netty - HTTP服务器
MIT