-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
72 lines (69 loc) · 1.59 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
site_name: Recyclerview Adapter Helper
site_description: Recyclerview Adapter Helper框架文档
repo_url: https://github.com/knightwood/Recyclerview-Adapter-Helper
site_author: knightwood
copyright: Copyright © 2018 - 2024 knightwood
repo_name: GitHub
docs_dir: 'docs'
theme:
# name: bootstrap386
name: material
language: zh
features:
- navigation.top
- navigation.prune
- navigation.footer
- navigation.instant
- search.highlight
- search.suggest
- search.share
- content.code.copy
- content.code.annotate
plugins:
# - offline
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
lang:
- en
- zh
markdown_extensions:
- smarty
- toc:
permalink: true
- footnotes
- tables
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- def_list
- md_in_html
- admonition
- pymdownx.highlight
- pymdownx.details
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
nav:
- 简单使用: index.md
- 多种Viewholder: multi-type.md
- 点击事件: click.md
- 拖拽与侧滑: drag.md
- 列表动画: animation.md
- ViewBinding: view-binding.md
- 更新数据: refresh-data.md
- 下拉header与上拉footer: header_footer.md
- 状态页: state.md
- concatAdapter.md
- listAdapter.md
- paging3.md
- ItemViewDelegate.md