-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
index.rst
709 lines (532 loc) · 26.3 KB
/
index.rst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
Read the Docs tutorial
======================
In this tutorial you will create a documentation project on Read the Docs
by importing a Sphinx project from a GitHub repository,
tailor its configuration, and explore several useful features of the platform.
The tutorial is aimed at people interested in learning
how to use Read the Docs to host their documentation projects.
You will fork a fictional software library
similar to the one developed in the :doc:`official Sphinx tutorial <sphinx:tutorial/index>`.
No prior experience with Sphinx is required
and you can follow this tutorial without having done the Sphinx one.
The only things you will need are
a web browser, an Internet connection, and a GitHub account
(you can `register for a free account <https://github.com/signup>`_ if you don't have one).
You will use Read the Docs Community, which means that the project will be public.
Getting started
---------------
Preparing your project on GitHub
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To start, `sign in to GitHub <https://github.com/login>`_
and navigate to `the tutorial GitHub template <https://github.com/readthedocs/tutorial-template/>`_,
where you will see a green :guilabel:`Use this template` button.
Click it to open a new page that will ask you for some details:
* Leave the default "Owner", or change it to something better for a tutorial project.
* Introduce an appropriate "Repository name", for example ``rtd-tutorial``.
* Make sure the project is "Public", rather than "Private".
After that, click on the green :guilabel:`Create repository from template` button,
which will generate a new repository on your personal account
(or the one of your choosing).
This is the repository you will import on Read the Docs,
and it contains the following files:
``.readthedocs.yaml``
Read the Docs configuration file.
Required to setup the documentation build process.
``README.rst``
Basic description of the repository, you will leave it untouched.
``pyproject.toml``
Python project metadata that makes it installable.
Useful for automatic documentation generation from sources.
``lumache.py``
Source code of the fictional Python library.
``docs/``
Directory holding all the Sphinx documentation sources,
including the Sphinx configuration ``docs/source/conf.py``
and the root document ``docs/source/index.rst`` written in reStructuredText.
.. figure:: /_static/images/tutorial/github-template.png
:width: 80%
:align: center
:alt: GitHub template for the tutorial
GitHub template for the tutorial
Sign up for Read the Docs
~~~~~~~~~~~~~~~~~~~~~~~~~
To sign up for a Read the Docs account,
navigate to the `Sign Up page <https://readthedocs.org/accounts/signup/>`_
and choose the option :guilabel:`Sign up with GitHub`.
On the authorization page, click the green :guilabel:`Authorize readthedocs` button.
.. figure:: /_static/images/tutorial/github-authorization.png
:width: 60%
:align: center
:alt: GitHub authorization page
GitHub authorization page
.. note::
Read the Docs needs elevated permissions to perform certain operations
that ensure that the workflow is as smooth as possible,
like installing :term:`webhooks <webhook>`.
If you want to learn more,
check out :ref:`guides/setup/git-repo-automatic:permissions for connected accounts`.
After that, you will be redirected to Read the Docs,
where you will need to confirm your e-mail and username.
Clicking the :guilabel:`Sign Up »` button will create your account
and redirect you to your :term:`dashboard`.
By now, you should have two email notifications:
* One from GitHub, telling you that "A third-party OAuth application ...
was recently authorized to access your account". You don't need to do
anything about it.
* Another one from Read the Docs, prompting you to "verify your email
address". Click on the link to finalize the process.
Once done, your Read the Docs account is created
and ready to import your first project.
Welcome!
.. figure:: /_static/images/tutorial/rtd-empty-dashboard.png
:width: 80%
:align: center
:alt: Read the Docs empty dashboard
Read the Docs empty dashboard
.. note::
Our commercial site offers some extra features,
like support for private projects.
You can learn more about :doc:`our two different sites </choosing-a-site>`.
First steps
-----------
Importing the project to Read the Docs
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To import your GitHub project to Read the Docs,
first click on the :guilabel:`Import a Project` button on your dashboard
(or browse to `the import page <https://readthedocs.org/dashboard/import/>`_ directly).
You should see your GitHub account under the "Filter repositories" list on the right.
If the list of repositories is empty, click the |:arrows_counterclockwise:| button,
and after that all your repositories will appear on the center.
.. figure:: /_static/images/tutorial/rtd-import-projects.gif
:width: 80%
:align: center
:alt: Import projects workflow
Import projects workflow
Locate your ``rtd-tutorial`` project
(possibly clicking :guilabel:`next ››` at the bottom if you have several pages of projects),
and then click on the |:heavy_plus_sign:| button to the right of the name.
The next page will ask you to fill some details about your Read the Docs project:
Name
The name of the project. It has to be unique across all the service,
so it is better if you prepend your username,
for example ``{username}-rtd-tutorial``.
Repository URL
The URL that contains the sources. Leave the automatically filled value.
Default branch
Name of the default branch of the project, leave it as ``main``.
After hitting the :guilabel:`Next` button, you will be redirected to the :term:`project home`.
You just created your first project on Read the Docs! |:tada:|
.. figure:: /_static/images/tutorial/rtd-project-home.png
:width: 80%
:align: center
:alt: Project home
Project home
Checking the first build
~~~~~~~~~~~~~~~~~~~~~~~~
Read the Docs will try to build the documentation of your project
right after you create it.
To see the build logs,
click on the :guilabel:`Your documentation is building` link on the :term:`project home`,
or alternatively navigate to the "Builds" page,
then open the one on top (the most recent one).
If the build has not finished yet by the time you open it,
you will see a spinner next to a "Installing" or "Building" indicator,
meaning that it is still in progress.
.. figure:: /_static/images/tutorial/rtd-first-successful-build.png
:width: 80%
:align: center
:alt: First successful documentation build
First successful documentation build
When the build finishes, you will see a green "Build completed" indicator,
the completion date, the elapsed time,
and a link to see the corresponding documentation.
If you now click on :guilabel:`View docs`, you will see your documentation live!
.. figure:: /_static/images/tutorial/rtd-first-light.png
:width: 80%
:align: center
:alt: HTML documentation live on Read the Docs
HTML documentation live on Read the Docs
.. note::
Advertisement is one of our main sources of revenue.
If you want to learn more about how do we fund our operations
and explore options to go ad-free,
check out our `Sustainability page <https://readthedocs.org/sustainability/>`_.
If you don't see the ad, you might be using an ad blocker.
Our EthicalAds network respects your privacy, doesn't target you,
and tries to be as unobstrusive as possible,
so we would like to kindly ask you to :doc:`not block us </advertising/ad-blocking>` |:heart:|
Basic configuration changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can now proceed to make some basic configuration adjustments.
Navigate back to the :term:`project page`
and click on the :guilabel:`⚙ Admin` button, which will open the Settings page.
First of all, add the following text in the description:
Lumache (/lu'make/) is a Python library for cooks and food lovers
that creates recipes mixing random ingredients.
Then set the project homepage to ``https://world.openfoodfacts.org/``,
and write ``food, python`` in the list of tags.
All this information will be shown on your project home.
After that, configure your email so you get a notification if the build fails.
To do so, click on the :guilabel:`Notifications` link on the left,
type the email where you would like to get the notification,
and click the :guilabel:`Add` button.
After that, your email will be shown under "Existing Notifications".
Trigger a build from a pull request
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Read the Docs allows you to :doc:`trigger builds from GitHub pull requests </pull-requests>`
and gives you a preview of how the documentation would look like with those changes.
To enable that functionality, first click on the :guilabel:`Settings` link on the left
under the :guilabel:`⚙ Admin` menu, check the "Build pull requests for this project" checkbox,
and click the :guilabel:`Save` button at the bottom of the page.
Next, navigate to your GitHub repository, locate the file ``docs/source/index.rst``,
and click on the |:pencil2:| icon on the top-right with the tooltip "Edit this file"
to open a web editor (more information `on their documentation`__).
__ https://docs.github.com/en/github/managing-files-in-a-repository/managing-files-on-github/editing-files-in-your-repository
.. figure:: /_static/images/tutorial/gh-edit.png
:width: 80%
:align: center
:alt: File view on GitHub before launching the editor
File view on GitHub before launching the editor
In the editor, add the following sentence to the file:
.. code-block:: rst
:caption: docs/source/index.rst
Lumache has its documentation hosted on Read the Docs.
Write an appropriate commit message,
and choose the "Create a **new branch** for this commit and start a pull request" option,
typing a name for the new branch.
When you are done, click the green :guilabel:`Propose changes` button,
which will take you to the new pull request page,
and there click the :guilabel:`Create pull request` button below the description.
.. figure:: /_static/images/tutorial/gh-pr-build.png
:width: 80%
:align: center
:alt: Read the Docs building the pull request from GitHub
Read the Docs building the pull request from GitHub
After opening the pull request, a Read the Docs check will appear
indicating that it is building the documentation for that pull request.
If you click on the :guilabel:`Details` link while it is building,
you will access the build logs,
otherwise it will take you directly to the documentation.
When you are satisfied, you can merge the pull request!
Adding a configuration file
---------------------------
The Admin tab of the :term:`project home` allows you
to change some *global* configuration values of your project.
In addition, you can further customize the building process
using the ``.readthedocs.yaml`` :doc:`configuration file </config-file/v2>`.
This has several advantages:
- The configuration lives next to your code and documentation, tracked by version control.
- It can be different for every version (more on versioning in the next section).
- Some configurations are only available using the config file.
This configuration file should be part of your Git repository.
It should be located in the base folder of the repository and be named ``.readthedocs.yaml``.
.. TODO: We are adding a how-to that we need to include in this tutorial.
.. Maybe by reference or maybe as full-featured content.
In this section, we will show you some examples of what a configuration file should contain.
.. tip::
Settings that apply to the entire project are controlled in the web dashboard,
while settings that are version or build specific are better in the YAML file.
Changing the Python version
~~~~~~~~~~~~~~~~~~~~~~~~~~~
For example, to explicitly use Python 3.8 to build your project,
navigate to your GitHub repository, click on ``.readthedocs.yaml`` file and then in the pencil icon ✏️ to edit the file
and change the Python version as follows:
.. code-block:: yaml
:caption: .readthedocs.yaml
:emphasize-lines: 6
version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.8"
python:
install:
- requirements: docs/requirements.txt
sphinx:
configuration: docs/source/conf.py
The purpose of each key is:
``version``
Mandatory, specifies :doc:`version 2 of the configuration file </config-file/v2>`.
``build.os``
Required to specify the Python version,
:ref:`states the name of the base image <config-file/v2:build.os>`.
``build.tools.python``
Declares the Python version to be used.
``python.install.requirements``
Specifies the Python dependencies to install required to build the documentation.
After you commit these changes, go back to your project home,
navigate to the "Builds" page, and open the new build that just started.
You will notice that one of the lines contains ``python -mvirtualenv``:
if you click on it, you will see the full output of the corresponding command,
stating that it used Python 3.8.6 to create the virtual environment.
.. figure:: /_static/images/tutorial/build-python3.8.png
:width: 80%
:align: center
:alt: Read the Docs build using Python 3.8
Read the Docs build using Python 3.8
Making warnings more visible
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you navigate to your HTML documentation,
you will notice that the index page looks correct
but the API section is empty.
This is a very common issue with Sphinx,
and the reason is stated in the build logs.
On the build page you opened before,
click on the :guilabel:`View raw` link on the top right,
which opens the build logs in plain text,
and you will see several warnings:
.. code-block:: text
WARNING: [autosummary] failed to import 'lumache': no module named lumache
...
WARNING: autodoc: failed to import function 'get_random_ingredients' from module 'lumache'; the following exception was raised:
No module named 'lumache'
WARNING: autodoc: failed to import exception 'InvalidKindError' from module 'lumache'; the following exception was raised:
No module named 'lumache'
To spot these warnings more easily and allow you to address them,
you can add the ``sphinx.fail_on_warning`` option to your Read the Docs configuration file.
For that, navigate to GitHub, locate the ``.readthedocs.yaml`` file you created earlier,
click on the |:pencil2:| icon, and add these contents:
.. code-block:: yaml
:caption: .readthedocs.yaml
:emphasize-lines: 14
version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.8"
python:
install:
- requirements: docs/requirements.txt
sphinx:
configuration: docs/source/conf.py
fail_on_warning: true
At this point, if you navigate back to your "Builds" page,
you will see a ``Failed`` build, which is exactly the intended result:
the Sphinx project is not properly configured yet,
and instead of rendering an empty API page, now the build fails.
The reason :py:mod:`sphinx:sphinx.ext.autosummary` and :py:mod:`sphinx:sphinx.ext.autodoc`
fail to import the code is because it is not installed.
Luckily, the ``.readthedocs.yaml`` also allows you to specify
which requirements to install.
To install the library code of your project,
go back to editing ``.readthedocs.yaml`` on GitHub and modify it as follows:
.. code-block:: yaml
:caption: .readthedocs.yaml
:emphasize-lines: 4-6
python:
install:
- requirements: docs/requirements.txt
# Install our python package before building the docs
- method: pip
path: .
With this change, Read the Docs will install the Python code
before starting the Sphinx build, which will finish seamlessly.
If you go now to the API page of your HTML documentation,
you will see the ``lumache`` summary!
Enabling PDF and EPUB builds
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Sphinx can build several other formats in addition to HTML, such as PDF and EPUB.
You might want to enable these formats for your project
so your users can read the documentation offline.
To do so, add this extra content to your ``.readthedocs.yaml``:
.. code-block:: yaml
:caption: .readthedocs.yaml
:emphasize-lines: 5-7
sphinx:
configuration: docs/source/conf.py
fail_on_warning: true
formats:
- pdf
- epub
After this change, PDF and EPUB downloads will be available
both from the "Downloads" section of the :term:`project home`,
as well as the :term:`flyout menu`.
.. figure:: /_static/images/tutorial/flyout-downloads.png
:align: center
:alt: Downloads available from the flyout menu
Downloads available from the flyout menu
Versioning documentation
------------------------
Read the Docs allows you to have :doc:`several versions of your documentation </versions>`,
in the same way that you have several versions of your code.
By default, it creates a ``latest`` version
that points to the default branch of your version control system
(``main`` in the case of this tutorial),
and that's why the URLs of your HTML documentation contain the string ``/latest/``.
Creating a new version
~~~~~~~~~~~~~~~~~~~~~~
Let's say you want to create a ``1.0`` version of your code,
with a corresponding ``1.0`` version of the documentation.
For that, first navigate to your GitHub repository, click on the branch selector,
type ``1.0.x``, and click on "Create branch: 1.0.x from 'main'"
(more information `on their documentation`__).
__ https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository
Next, go to your :term:`project home`, click on the :guilabel:`Versions` button,
and under "Active Versions" you will see two entries:
- The ``latest`` version, pointing to the ``main`` branch.
- A new ``stable`` version, pointing to the ``origin/1.0.x`` branch.
.. figure:: /_static/images/tutorial/active-versions.png
:width: 80%
:align: center
:alt: List of active versions of the project
List of active versions of the project
Right after you created your branch,
Read the Docs created a new special version called ``stable`` pointing to it,
and started building it. When the build finishes,
the ``stable`` version will be listed in the :term:`flyout menu`
and your readers will be able to choose it.
.. note::
Read the Docs :ref:`follows some rules <versions:how we envision versions working>`
to decide whether to create a ``stable`` version pointing to your new branch or tag.
To simplify, it will check if the name resembles a version number
like ``1.0``, ``2.0.3`` or ``4.x``.
Now you might want to set ``stable`` as the *default version*,
rather than ``latest``,
so that users see the ``stable`` documentation
when they visit the :term:`root URL` of your documentation
(while still being able to change the version in the flyout menu).
For that, go to the :guilabel:`Settings` link
under the :guilabel:`⚙ Admin` menu of your project home,
choose ``stable`` in the "Default version*" dropdown,
and hit :guilabel:`Save` at the bottom.
Done!
Modifying versions
~~~~~~~~~~~~~~~~~~
Both ``latest`` and ``stable`` are now *active*, which means that
they are visible for users, and new builds can be triggered for them.
In addition to these, Read the Docs also created an *inactive* ``1.0.x``
version, which will always point to the ``1.0.x`` branch of your repository.
.. figure:: /_static/images/tutorial/inactive-versions.png
:width: 80%
:align: center
:alt: List of inactive versions of the project
List of inactive versions of the project
Let's activate the ``1.0.x`` version.
For that, go to the "Versions" on your :term:`project home`,
locate ``1.0.x`` under "Activate a version",
and click on the :guilabel:`Activate` button.
This will take you to a new page with two checkboxes,
"Active" and "Hidden". Check only "Active",
and click :guilabel:`Save`.
After you do this, ``1.0.x`` will appear on the "Active Versions" section,
and a new build will be triggered for it.
.. note::
You can read more about :ref:`hidden versions <versions:hidden>`
in our documentation.
.. "Show a warning for old versions" feature is not available anymore.
We should re-write this section once we have the notification addons rolled out.
Show a warning for old versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
When your project matures, the number of versions might increase.
Sometimes you will want to warn your readers
when they are browsing an old or outdated version of your documentation.
To showcase how to do that, let's create a ``2.0`` version of the code:
navigate to your GitHub repository, click on the branch selector,
type ``2.0.x``, and click on "Create branch: 2.0.x from 'main'".
This will trigger two things:
- Since ``2.0.x`` is your newest branch, ``stable`` will switch to tracking it.
- A new ``2.0.x`` version will be created on your Read the Docs project.
- Since you already have an active ``stable`` version, ``2.0.x`` will be activated.
From this point, ``1.0.x`` version is no longer the most up to date one.
To display a warning to your readers, go to the :guilabel:`⚙ Admin` menu of your project home,
click on the :guilabel:`Settings` link on the left,
enable the "Show version warning" checkbox, and click the :guilabel:`Save` button.
If you now browse the ``1.0.x`` documentation, you will see a warning on top
encouraging you to browse the latest version instead. Neat!
.. figure:: /_static/images/tutorial/old-version-warning.png
:width: 80%
:align: center
:alt: Warning for old versions
Warning for old versions
Getting insights from your projects
-----------------------------------
Once your project is up and running, you will probably want to understand
how readers are using your documentation, addressing some common questions like:
- what pages are the most visited pages?
- what search terms are the most frequently used?
- are readers finding what they look for?
Read the Docs offers you some analytics tools to find out the answers.
Browsing traffic analytics
~~~~~~~~~~~~~~~~~~~~~~~~~~
The :doc:`/analytics` view shows the top viewed documentation pages of the past 30 days,
plus a visualization of the daily views during that period.
To generate some artificial views on your newly created project,
you can first click around the different pages of your project,
which will be accounted immediately for the current day statistics.
To see the Traffic Analytics view, go back the :term:`project page` again,
click on the :guilabel:`⚙ Admin` button,
and then click on the :guilabel:`Traffic Analytics` section.
You will see the list of pages in descending order of visits,
as well as a plot similar to the one below.
.. figure:: /_static/images/tutorial/traffic-analytics-plot.png
:width: 80%
:align: center
:alt: Traffic Analytics plot
Traffic Analytics plot
.. note::
The Traffic Analytics view explained above gives you a simple overview
of how your readers browse your documentation. It has the advantage that
it stores no identifying information about your visitors,
and therefore it respects their privacy.
However, you might want to get more detailed data by
:ref:`enabling Google Analytics <analytics:Enabling Google Analytics on your Project>`.
Notice though that we take some extra measures to :ref:`respect user
privacy <advertising/advertising-details:analytics>`
when they visit projects that have Google Analytics enabled,
and this might reduce the number of visits counted.
Finally, you can also download this data for closer inspection.
To do that, scroll to the bottom of the page
and click on the :guilabel:`Download all data` button.
That will prompt you to download a :abbr:`CSV (Comma-Separated Values)` file
that you can process any way you want.
Browsing search analytics
~~~~~~~~~~~~~~~~~~~~~~~~~
Apart from traffic analytics, Read the Docs also offers the possibility
to inspect :doc:`what search terms your readers use </guides/search-analytics>`
on your documentation.
This can inform decisions on what areas to reinforce,
or what parts of your project are less understood or more difficult to find.
To generate some artificial search statistics on the project,
go to the HTML documentation, locate the Sphinx search box on the left,
type ``ingredients``, and press the :kbd:`Enter` key.
You will be redirected to the search results page, which will show two entries.
Next, go back to the :guilabel:`⚙ Admin` section of your project page,
and then click on the :guilabel:`Search Analytics` section.
You will see a table with the most searched queries
(including the ``ingredients`` one you just typed),
how many results did each query return, and how many times it was searched.
Below the queries table, you will also see a visualization
of the daily number of search queries during the past 30 days.
.. figure:: /_static/images/tutorial/search-analytics-terms.png
:width: 80%
:align: center
:alt: Most searched terms
Most searched terms
Like the Traffic Analytics, you can also download the whole dataset in CSV format
by clicking on the :guilabel:`Download all data` button.
Where to go from here
---------------------
This is the end of the tutorial. You started by forking a GitHub repository
and importing it on Read the Docs, building its HTML documentation,
and then went through a series of steps to customize the build process,
tweak the project configuration, and add new versions.
Here you have some resources to continue learning about documentation
and Read the Docs:
- You can learn more about the functionality of the platform
by going over our :doc:`features </reference/features>` page.
- To make the most of the documentation generators that are supported,
you can read the :doc:`Sphinx tutorial <sphinx:tutorial/index>`
or the `MkDocs User Guide <https://www.mkdocs.org/user-guide/>`_.
- Display example projects and read the source code in :doc:`/examples`.
- Whether you are a documentation author, a project administrator, a developer, or a designer,
you can follow our how-to guides that cover specific tasks,
available under :doc:`/guides/index`.
- For private project support and other enterprise features,
you can use :doc:`our commercial service </commercial/index>`
(and if in doubt, check out :doc:`/choosing-a-site`).
- Do you want to join a global community of fellow `documentarians <writethedocs:documentarians>`?
Check out `Write the Docs <https://www.writethedocs.org/>`_ and
:doc:`its Slack workspace <writethedocs:slack>`.
- Do you want to contribute to Read the Docs?
We greatly appreciate it! Check out :doc:`rtd-dev:contribute`.
Happy documenting!