Initial implementation of XAP protocol.
This commit is contained in:
parent
f4c447f2df
commit
eba91c6e28
34 changed files with 1934 additions and 4 deletions
11
lib/python/qmk/cli/xap/generate_docs.py
Executable file
11
lib/python/qmk/cli/xap/generate_docs.py
Executable file
|
@ -0,0 +1,11 @@
|
|||
"""This script generates the XAP protocol documentation.
|
||||
"""
|
||||
from milc import cli
|
||||
from qmk.xap.gen_docs.generator import generate_docs
|
||||
|
||||
|
||||
@cli.subcommand('Generates the XAP protocol documentation.', hidden=False if cli.config.user.developer else True)
|
||||
def xap_generate_docs(cli):
|
||||
"""Generates the XAP protocol documentation by merging the definitions files, and producing the corresponding Markdown document under `/docs/`.
|
||||
"""
|
||||
generate_docs()
|
Loading…
Add table
Add a link
Reference in a new issue