File tree Expand file tree Collapse file tree 7 files changed +74
-13
lines changed
Expand file tree Collapse file tree 7 files changed +74
-13
lines changed Original file line number Diff line number Diff line change 6868# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
6969
7070html_theme = "pydata_sphinx_theme"
71- html_static_path = ["_static" ]
72- nbsphinx_execute = "always"
71+ html_static_path = ["../_static" ]
72+
73+ html_theme_options = {
74+ "logo" : {
75+ "text" : "AutoIntent" ,
76+ "image_light" : "../_static/logo-light.svg" ,
77+ "image_dark" : "../_static/logo-dark.svg" ,
78+ },
79+ "icon_links" : [
80+ {
81+ "name" : "GitHub" ,
82+ "url" : "https://github.com/deeppavlov/AutoIntent" ,
83+ "icon" : "fa-brands fa-github" ,
84+ "type" : "fontawesome" ,
85+ },
86+ ],
87+ "show_toc_level" : 3 ,
88+ }
89+
90+ html_favicon = "../_static/logo-white.svg"
91+ html_show_sourcelink = False
92+
93+ toc_object_entries_show_parents = "hide"
7394
7495todo_include_todos = True
7596
87108nbsphinx_prolog = """
88109:tutorial_name: {{ env.docname }}
89110"""
111+ nbsphinx_execute = "always"
90112
91113mathjax_path = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
92114
Original file line number Diff line number Diff line change @@ -26,28 +26,28 @@ Example of building an intent classifier in a couple of lines of code:
2626 Documentation Contents
2727----------------------
2828
29- :doc: `quickstart `
30- .................
29+ :doc: `Quickstart < quickstart > `
30+ ..............................
3131
3232It is recommended to begin with the :doc: `quickstart ` page. It contains overview of our capabilities.
3333
34- :doc: `concepts `
35- ...............
34+ :doc: `Key Concepts < concepts > `
35+ ..............................
3636
3737This page contains basic information about the terms and concepts we use throughout our documentation.
3838
39- :doc: `tutorials `
40- ................
39+ :doc: `Tutorials < tutorials > `
40+ ............................
4141
4242Newbie-friendly information on how to perform different tasks using our library.
4343
44- :doc: `guides/index `
45- ...................
44+ :doc: `User Guides< guides/index> `
45+ ................................
4646
4747Some advanced information
4848
49- :doc: `learn/index `
50- ..................
49+ :doc: `Learn AutoIntent< learn/index> `
50+ ....................................
5151
5252Some theoretical background
5353
Original file line number Diff line number Diff line change 1- Quick Start
1+ Quickstart
22===========
33
44Installation
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ Tutorials
44.. toctree ::
55 :name: tutorials
66 :glob:
7+ :maxdepth: 2
78
89 tutorials/index_*
You can’t perform that action at this time.
0 commit comments