xref: /oneTBB/doc/README.md (revision e386960a)
1# How to build oneTBB documentation
2
3Our documentation is written in restructured text markup (.rst) and built using [Sphinx](http://www.sphinx-doc.org/en/master/).
4
5This document explains how to build oneTBB documentation locally.
6
7## Prerequisites
8- Python 3.7.0 or higher
9- Sphinx
10
11## Build documentation
12
13Do the following to generate HTML output of the documentation:
14
151. Clone oneTBB repository:
16
17```
18git clone https://github.com/oneapi-src/oneTBB.git
19```
20
212. Go to the `doc` folder:
22
23```
24cd oneTBB/doc
25```
26
273. Run in the command line:
28
29```
30make html
31```
32
33
34That's it! Your built documentation is located in the ``build/html`` folder.
35