Sphinx) sphinx-rtd-theme에서 Edit on Github 또는 Gitlab 으로 변경하는 방법
2022. 2. 5. 17:27ㆍ꿀팁 분석 환경 설정/파이썬 개발 팁
sphinx-rtd-theme 에서 github 링크로 가는 방법에 대해서 공유한다.
이것은 gitlab 역시 동일하다.
코드 추가
source 에서 index.rst 에 아래와 같이 github_url을 넣어준다.
.. test documentation master file, created by
sphinx-quickstart on Wed Jan 26 10:55:52 2022.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
:github_url:
https://github.com/sungreong/sphinx-test
Welcome to test's documentation!
================================
.. toctree::
:maxdepth: 2
:caption: Contents:
modules
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
build
cd docs
make clean (초기화 optional)
make build
docs 에 index.html을 만들고 아래와 같은 코드를 추가 해야한다.
<html>
<head>
<meta http-equiv="refresh" content="0; url=./build/html/index.html" />
</head>
</html>
자세한 것은 아래 블로그 github을 참고하면 좋다.
https://blog.naver.com/pjt3591oo/222067596734
여기서 엄청난 삽질을 했다...
이걸 안해주면 Github Pages에서 반영이 안된다.
Git push를 해주고 기다리면...
Github
https://sungreong.github.io/sphinx-test/
https://github.com/sungreong/sphinx-test
728x90
'꿀팁 분석 환경 설정 > 파이썬 개발 팁' 카테고리의 다른 글
[VSCode] Python Interactive window 사용하여 코딩하기 (0) | 2022.10.06 |
---|---|
Kaggle) Notebook에서 저장한 파일 다운로드 하기 (0) | 2022.03.08 |
Sphinx) sphinx-rtd-theme에서 Logo 바꾸기 (0) | 2022.02.05 |
Sphinx) 이미지에 URL 넣기 (0) | 2022.02.05 |
vscode, colab) ipynb 파일을 html 파일로 바꾸기 (0) | 2022.01.31 |