Skip to content

Commit 48767f7

Browse files
committed
Initial unordered-containers user guide content.
[ci skip]
1 parent f1a53e2 commit 48767f7

19 files changed

+1328
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "docs/_extensions/haddock-autolink"]
2+
path = docs/_extensions/haddock-autolink
3+
url = https://github.com/m-renaud/haddock-autolink

.readthedocs.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
3+
sphinx:
4+
configuration: docs/conf.py
5+
6+
submodules:
7+
include:
8+
- docs/_extensions/haddock-autolink
9+
10+
python:
11+
version: 2.7

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line.
5+
SPHINXOPTS = -a -E
6+
SPHINXBUILD = sphinx-build
7+
SPHINXPROJ = unordered-containers
8+
SOURCEDIR = .
9+
BUILDDIR = _build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

docs/_extensions/haddock-autolink

Submodule haddock-autolink added at 51c39ab

docs/_extensions/hs-theme.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def setup(app):
2+
app.add_stylesheet('css/hs-theme.css')

docs/_extensions/hs-theme.pyc

382 Bytes
Binary file not shown.

docs/_static/css/hs-theme.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.wy-side-nav-search {
2+
background-color: #222 !important;
3+
}
4+
5+
.wy-nav-top {
6+
background-color: #333 !important;
7+
}
8+
9+
.wy-nav-top i {
10+
color: #282 !important;
11+
}

docs/_static/images/favicon-16x16.png

884 Bytes
Loading
789 Bytes
Loading
Lines changed: 17 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)