Skip to content

Commit

Permalink
Sphinx 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sethfischer committed May 29, 2021
1 parent c30b139 commit e8f831d
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,12 @@ max_line_length = 79
[*.{cpp,h}]
indent_size = 2

[*.py]
indent_size = 4
max_line_length = 88

[*.yml]
indent_size = 2

[Makefile]
indent_style = tab
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.pio
.venv
.vscode
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_build
17 changes: 17 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# You can set these variables from the command line, and also from the
# environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
20 changes: 20 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import sphinx_rtd_theme


project = "Beginning Arduino with PlatformIO"
copyright = "2021, Seth Fischer"
author = "Seth Fischer"

release = "0.1.0"

extensions = [
"sphinx_rtd_theme",
]

templates_path = ["_templates"]

exclude_patterns = ["_build"]


html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
7 changes: 7 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
=================================
Beginning Arduino with PlatformIO
=================================

.. toctree::
:maxdepth: 2
:caption: Contents:
31 changes: 31 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
alabaster==0.7.12
appdirs==1.4.4
Babel==2.9.1
black==21.5b1
certifi==2020.12.5
chardet==4.0.0
click==8.0.1
docutils==0.16
idna==2.10
imagesize==1.2.0
Jinja2==3.0.1
MarkupSafe==2.0.1
mypy-extensions==0.4.3
packaging==20.9
pathspec==0.8.1
Pygments==2.9.0
pyparsing==2.4.7
pytz==2021.1
regex==2021.4.4
requests==2.25.1
snowballstemmer==2.1.0
Sphinx==4.0.2
sphinx-rtd-theme==0.5.2
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.0
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
toml==0.10.2
urllib3==1.26.5

0 comments on commit e8f831d

Please sign in to comment.