mkdocs.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. site_name: Net
  2. site_author: drake
  3. site_description: Net document
  4. copyright: Copyright © 2018 - 2020 劉強東
  5. repo_name: GitHub
  6. repo_url: https://github.com/liangjingkanji/Net
  7. extra_css:
  8. - css/extra.css
  9. docs_dir: docs
  10. theme:
  11. name: material
  12. custom_dir: docs/material
  13. palette:
  14. scheme: drake
  15. primary: white
  16. font: false
  17. language: 'zh'
  18. features:
  19. - search.highlight
  20. markdown_extensions:
  21. - toc:
  22. permalink: true
  23. - pymdownx.tasklist:
  24. custom_checkbox: true
  25. - admonition
  26. - pymdownx.details
  27. - pymdownx.superfences
  28. - pymdownx.inlinehilite
  29. - pymdownx.tabbed
  30. nav:
  31. - 使用: index.md
  32. - 协程请求: coroutine-request.md
  33. - 作用域: scope.md
  34. - 同步请求: sync-request.md
  35. - 请求参数: request.md
  36. - 全局配置: config.md
  37. - 请求结果:
  38. - 默认结果: default-response.md
  39. - 自定义转换器: converter.md
  40. - 自定义结构解析: convert-special.md
  41. - Kotlin-Serialization: kotlin-serialization.md
  42. - 数据类生成插件: model-generate.md
  43. - 自动化:
  44. - 自动加载框: auto-dialog.md
  45. - 自动缺省页: auto-state.md
  46. - 自动下拉刷新: auto-refresh.md
  47. - 自动分页加载: auto-page.md
  48. - 切换线程: switch-thread.md
  49. - ViewModel: view-model.md
  50. - 异常追踪: exception-track.md
  51. - 错误处理:
  52. - 默认错误处理: error-default.md
  53. - 单例错误捕获: error-single.md
  54. - 全局错误捕获: error-global.md
  55. - 自定义错误提示: error-tip.md
  56. - 自定义异常抛出: error-exception.md
  57. - OkHttpClient: okhttp-client.md
  58. - 拦截器: interceptor.md
  59. - Https证书: https.md
  60. - Cookie: cookie.md
  61. - 缓存: cache.md
  62. - 标签/额外数据: tag.md
  63. - 上传文件: upload-file.md
  64. - 下载文件: download-file.md
  65. - 进度监听: progress.md
  66. - 取消请求: cancel.md
  67. - 重复请求: repeat-request.md
  68. - 自动搜索: debounce.md
  69. - 最快请求结果: fastest.md
  70. - 日志插件: log-recorder.md
  71. - 通知栏日志: log-notice.md
  72. - 限时/定时请求: timing.md
  73. - Callback: callback.md
  74. - 轮询器/倒计时: interval.md
  75. - 社区讨论: https://github.com/liangjingkanji/Net/discussions
  76. - 常见问题: https://github.com/liangjingkanji/Net/blob/master/docs/issues.md
  77. - 项目实践: practice.md
  78. - 更新日志: updates.md
  79. - 3.x文档: api/index.html