対話を使わずにコマンドだけでsphinx-quickstart
code:quickstart.sh
sphinx-quickstart \
--sep \
-p PROJECT_NAME \
-a AUTHOR_NAME \
-l ja \
-r '' \
--ext-githubpages \
--no-batchfile
-r(リリース番号)はもともとオプショナルなので、空文字列を渡すのは省略できることに気づいた
--extensionsを指定して任意の拡張を有効にできる
-t TEMPLATEDIR, --templatedir TEMPLATEDIR
上は対話的に必要なオプションをすべて渡しているからコマンドだけになっている
-qも指定する
Quiet mode that skips the interactive wizard for specifying options. This option requires -p, -a and -v options.
このとき-vには空文字列を渡せばよい
ブログを書いた(TODO リンク)