본문 바로가기
Python Library

[Sphinx] More Sphinx customization (2)

by goatlab 2022. 5. 2.
728x90
반응형
SMALL

타사 HTML 테마 사용 (Using a third-party HTML theme)

 

반면에 테마는 문서의 모양을 사용자 정의하는 방법입니다. Sphinx에는 몇 가지 기본 제공 테마 가 있으며 타사 테마도 있다.

 

예를 들어, HTML 문서에서 Furo 타사 테마를 사용하려면 먼저 다음과 같이 Python 가상 환경에 설치해야 한다.

 

(.venv) $ pip install furo

 

그런 다음 html_theme에서 변수를 찾아 conf.py 값을 다음과 같이 바꾼다.

 

# The theme to use for HTML and HTML Help pages.  See the documentation for
# a list of builtin themes.
#
html_theme = 'furo'

 

이 변경으로 인해 HTML 문서가 이제 새로운 모양으로 바뀌었음을 알 수 있다.

 

 

https://www.sphinx-doc.org/en/master/tutorial/more-sphinx-customization.html#using-a-third-party-html-theme

 

More Sphinx customization — Sphinx documentation

More Sphinx customization There are two main ways to customize your documentation beyond what is possible with core Sphinx: extensions and themes. Enabling a built-in extension In addition to these configuration values, you can customize Sphinx even more b

www.sphinx-doc.org

 

728x90
반응형
LIST