This commit is contained in:
zvecr 2022-06-21 13:27:45 +01:00
parent 2001fea9b9
commit 90fc901624
2 changed files with 10 additions and 1 deletions

View file

@ -128,6 +128,8 @@
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script> <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script> <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script> <script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="//unpkg.com/mermaid/dist/mermaid.js"></script>
<script src="//unpkg.com/docsify-mermaid@latest/dist/docsify-mermaid.js"></script>
<script src="//unpkg.com/docsify-tabs@1"></script> <script src="//unpkg.com/docsify-tabs@1"></script>
<script src="//unpkg.com/docsify-copy-code@2"></script> <script src="//unpkg.com/docsify-copy-code@2"></script>
<script src="//unpkg.com/docsify-toc@1.1.0/dist/toc.js"></script> <script src="//unpkg.com/docsify-toc@1.1.0/dist/toc.js"></script>
@ -143,5 +145,6 @@
navigator.serviceWorker.register('sw.js') navigator.serviceWorker.register('sw.js')
} }
</script> </script>
<script>mermaid.initialize({ startOnLoad: true });</script>
</body> </body>
</html> </html>

View file

@ -4,7 +4,13 @@ XAP (“extensible application protocol”) API intends to provide access to var
## Overview ## Overview
TODO ```mermaid
%%{init: {'themeVariables': { 'fontSize': '24px'}}}%%
flowchart LR
dev[QMK Device] <-- XAP --> host[Host Computer]
```
The intention is to provide access to QMK subsystems through a versioned and documented protocol.
## Protocol Reference ## Protocol Reference