Contents Menu Expand Light mode Dark mode Auto light/dark mode
PyCon JP TV #25 sample project documentation
Logo
PyCon JP TV #25 sample project documentation

Contents:

  • Sphinxとは
  • Quickstart
  • カスタマイズ
  • markdown対応
  • テーマを変える
  • Read the Docs でデプロイする
  • おすすめ拡張機能
  • テストドキュメント
Back to top
Edit this page

カスタマイズ#

テーマ変更#

  • HTML Theming — Sphinx documentation

  • テーマを bizstyle に変更

(env) $ vi source/conf.py
(env) $ make html

ロゴ画像を追加#

  • https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

  • 画像ファイル: https://tv.pycon.jp/_images/eyecatch.png

(env) $ curl https://tv.pycon.jp/_images/eyecatch.png -o source/_static/logo.png 
  • source/conf.py に以下を追加

html_logo = "_static/logo.png"
Next
markdown対応
Previous
Quickstart
Copyright © 2023, takanory
Made with Sphinx and @pradyunsg's Furo
On this page
  • カスタマイズ
    • テーマ変更
    • ロゴ画像を追加