Sphinx-jsでドキュメントを自動生成できた方いますか?
解決したいこと
Sphinx-jsでドキュメントを自動生成したい。
sphinx-quickstartで生成されたindex.rst
.. test_doc documentation master file, created by
sphinx-quickstart on Tue Apr 6 15:38:21 2021.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to test_doc's documentation!
====================================
.. toctree::
:maxdepth: 2
:caption: Contents:
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
疑問
上記のファイルに以下のようなコードを追記することで、"make html"コマンドすれば、その選択した関数がドキュメントに載るようなのですが、そもそも指定する関数が記述されているJSファイルの紐づけはどこでされているのでしょうか。
.. js:autofunction:: someFunction
また、もっと下記のPythonのドキュメント自動生成コマンドのようにJavaScriptでも簡単に自動生成できるコマンドはないのでしょうか。
sphinx apidoc -f -o hogehoge.py