├── .hugo_build.lock ├── Makefile ├── README.md ├── archetypes └── default.md ├── config.toml ├── content └── docs │ ├── _index.md │ ├── end │ └── _index.md │ ├── part1 │ ├── _index.md │ ├── chapter1 │ │ └── _index.md │ └── chapter2 │ │ └── _index.md │ ├── part2 │ ├── _index.md │ ├── chapter3 │ │ └── _index.md │ ├── chapter4 │ │ └── _index.md │ └── chapter5 │ │ └── _index.md │ ├── part3 │ ├── _index.md │ ├── chapter6 │ │ └── _index.md │ └── chapter7 │ │ └── _index.md │ └── start │ └── _index.md └── resources └── _gen └── assets └── scss ├── book.scss_e129fe35b8d0a70789c8a08429469073.content └── book.scss_e129fe35b8d0a70789c8a08429469073.json /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | dev: 2 | hugo server --port 8022 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | title = '动手写 AI 搜索引擎' 2 | theme = 'book' 3 | -------------------------------------------------------------------------------- /content/docs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 动手写 AI 搜索引擎 3 | --- -------------------------------------------------------------------------------- /content/docs/end/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/end/_index.md -------------------------------------------------------------------------------- /content/docs/part1/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 1 3 | title: "第一部分 理论基础" 4 | --- -------------------------------------------------------------------------------- /content/docs/part1/chapter1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/part1/chapter1/_index.md -------------------------------------------------------------------------------- /content/docs/part1/chapter2/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/part1/chapter2/_index.md -------------------------------------------------------------------------------- /content/docs/part2/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 2 3 | title: "第二部分 开发实践" 4 | --- -------------------------------------------------------------------------------- /content/docs/part2/chapter3/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/part2/chapter3/_index.md -------------------------------------------------------------------------------- /content/docs/part2/chapter4/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/part2/chapter4/_index.md -------------------------------------------------------------------------------- /content/docs/part2/chapter5/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/part2/chapter5/_index.md -------------------------------------------------------------------------------- /content/docs/part3/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 3 3 | title: "第三部分 进阶探索" 4 | --- -------------------------------------------------------------------------------- /content/docs/part3/chapter6/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/part3/chapter6/_index.md -------------------------------------------------------------------------------- /content/docs/part3/chapter7/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/part3/chapter7/_index.md -------------------------------------------------------------------------------- /content/docs/start/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/content/docs/start/_index.md -------------------------------------------------------------------------------- /resources/_gen/assets/scss/book.scss_e129fe35b8d0a70789c8a08429469073.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/resources/_gen/assets/scss/book.scss_e129fe35b8d0a70789c8a08429469073.content -------------------------------------------------------------------------------- /resources/_gen/assets/scss/book.scss_e129fe35b8d0a70789c8a08429469073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idoubi/book-of-ai-search/HEAD/resources/_gen/assets/scss/book.scss_e129fe35b8d0a70789c8a08429469073.json --------------------------------------------------------------------------------