mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-27 16:21:28 +00:00
💡 support sphinx 4.0
This commit is contained in:
@ -4,7 +4,7 @@ sidebarDepth: 0
|
||||
---
|
||||
|
||||
NoneBot.adapters.feishu 模块
|
||||
===========================
|
||||
============================
|
||||
|
||||
.. automodule:: nonebot.adapters.feishu
|
||||
|
||||
@ -15,7 +15,7 @@ NoneBot.adapters.feishu.config 模块
|
||||
:members:
|
||||
|
||||
NoneBot.adapters.feishu.exception 模块
|
||||
=====================================
|
||||
======================================
|
||||
|
||||
.. automodule:: nonebot.adapters.feishu.exception
|
||||
:members:
|
||||
@ -23,7 +23,7 @@ NoneBot.adapters.feishu.exception 模块
|
||||
|
||||
|
||||
NoneBot.adapters.feishu.bot 模块
|
||||
===============================
|
||||
================================
|
||||
|
||||
.. automodule:: nonebot.adapters.feishu.bot
|
||||
:members:
|
||||
@ -32,7 +32,7 @@ NoneBot.adapters.feishu.bot 模块
|
||||
|
||||
|
||||
NoneBot.adapters.feishu.message 模块
|
||||
===================================
|
||||
====================================
|
||||
|
||||
.. automodule:: nonebot.adapters.feishu.message
|
||||
:members:
|
||||
@ -41,7 +41,7 @@ NoneBot.adapters.feishu.message 模块
|
||||
|
||||
|
||||
NoneBot.adapters.feishu.event 模块
|
||||
=================================
|
||||
==================================
|
||||
|
||||
.. automodule:: nonebot.adapters.feishu.event
|
||||
:members:
|
||||
|
@ -12,6 +12,7 @@
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.insert(0, os.path.abspath(os.path.dirname(os.path.dirname(__file__))))
|
||||
|
||||
# -- Project information -----------------------------------------------------
|
||||
@ -73,6 +74,7 @@ html_static_path = ['_static']
|
||||
# -- Options for autodoc extension ----------------------------------------------
|
||||
autodoc_default_options = {'member-order': 'bysource'}
|
||||
autodoc_inherit_docstrings = False
|
||||
autodoc_typehints = 'none'
|
||||
|
||||
# -- Options for todo extension ----------------------------------------------
|
||||
|
||||
|
@ -6,9 +6,6 @@ sidebarDepth: 0
|
||||
NoneBot.utils 模块
|
||||
==================
|
||||
|
||||
|
||||
.. autofunction:: nonebot.utils.escape_tag
|
||||
.. autodecorator:: nonebot.utils.run_sync
|
||||
.. autodecorator:: nonebot.utils.logger_wrapper
|
||||
.. autoclass:: nonebot.utils.DataclassEncoder
|
||||
:show-inheritance:
|
||||
.. automodule:: nonebot.utils
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
Reference in New Issue
Block a user