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 문서가 이제 새로운 모양으로 바뀌었음을 알 수 있다.
728x90
반응형
LIST
'Python Library' 카테고리의 다른 글
[Sphinx] Narrative documentation in Sphinx (2) (0) | 2022.05.02 |
---|---|
[Sphinx] Narrative documentation in Sphinx (1) (0) | 2022.05.02 |
[Sphinx] More Sphinx customization (1) (0) | 2022.05.02 |
[Sphinx] Sphinx를 사용하여 프로젝트 문서화 (2) (0) | 2022.05.02 |
[Sphinx] Sphinx를 사용하여 프로젝트 문서화 (1) (0) | 2022.05.02 |