Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
version: 2

build:
os: ubuntu-24.04
tools:
python: "3.12"
apt_packages:
- doxygen
- graphviz

submodules:
exclude: all

python:
install:
- requirements: docs/public/requirements.txt
install:
- requirements: docs/public/requirements.txt

sphinx:
configuration: docs/public/conf.py
configuration: docs/public/conf.py
11 changes: 4 additions & 7 deletions docs/public/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# -- Project information -----------------------------------------------------

project = 'Microsoft C++ Client Telemetry SDK"'
project = 'Microsoft C++ Client Telemetry SDK'
copyright = 'Microsoft Corporation'
author = 'Microsoft Corporation'

Expand All @@ -28,8 +28,6 @@
# This is necessary so the readthedocs build works. It doesn't invoke the
# Makefile, but just runs sphinx on this conf.py.
import os
import shutil
import subprocess
if not os.path.exists('doxyoutput'):
os.makedirs('doxyoutput')

Expand Down Expand Up @@ -61,7 +59,7 @@

primary_domain = "cpp"

higlight_language = "cpp"
highlight_language = "cpp"


# Add any paths that contain templates here, relative to this directory.
Expand All @@ -78,10 +76,9 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
#html_theme = "furo"
html_theme = "sphinx_rtd_theme"
html_theme = "furo"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = []
3 changes: 2 additions & 1 deletion docs/public/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
sphinx<10
breathe
exhale
furo
furo
Loading