mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
11 lines
234 B
Python
11 lines
234 B
Python
from nb_autodoc import Module, Context
|
|
from nb_autodoc.builders.markdown import MarkdownBuilder
|
|
|
|
context = Context()
|
|
|
|
module = Module("nonebot", context=context)
|
|
|
|
builder = MarkdownBuilder(module, output_dir="build")
|
|
|
|
builder.write()
|