Skip to content

Commit

Permalink
Add Coobook and Getting Started
Browse files Browse the repository at this point in the history
Added two new sections - Cookbook and Getting
Started. Getting started educates developers
on how to execute transactions where as Cookbook
serves as a cheatsheet and lists frequently used
operations. Also did some basic cleanup of docs
by removing internal classes from the index such
as SessionClient. Changed theme to sphinx_rtd_theme.
  • Loading branch information
saumehta9 committed May 7, 2020
1 parent 7f889b5 commit eb1b651
Show file tree
Hide file tree
Showing 12 changed files with 653 additions and 97 deletions.
4 changes: 4 additions & 0 deletions docs/source/_static/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pre {
border-width: .1em .1em .1em .1em;
background-color: #f5f4f4;
}
17 changes: 12 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,19 @@
#modindex_common_prefix = []


import guzzle_sphinx_theme
# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
html_css_files = [
'css/custom.css',
]

import sphinx_rtd_theme

extensions.append("sphinx_rtd_theme")
html_translator_class = 'sphinx_rtd_theme.HTMLTranslator'

extensions.append("guzzle_sphinx_theme")
html_translator_class = 'guzzle_sphinx_theme.HTMLTranslator'
html_theme_path = guzzle_sphinx_theme.html_theme_path()
html_theme = 'guzzle_sphinx_theme'
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
# Guzzle theme options (see theme.conf for more information)

html_theme_options = {
Expand Down
Loading

0 comments on commit eb1b651

Please sign in to comment.