I just started working on Sphinx documentation and I’m using “Awesome Sphinx Theme”. I just happened to realize that there are unwanted “paragraph” symbol keep on appearing on the title header and I just don’t know how to remove it.
import os
import sys
sys.path.insert(0, os.path.abspath(".."))
project = 'Test'
copyright = '2024, John'
author = 'John'
release = '0.1.0'
extensions = ["sphinxawesome_theme.highlighting"]
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
html_theme = 'sphinxawesome_theme'
html_title = f'{project}'
html_static_path = ['_static']
I’ve also attached my conf.py for reference. Any help would be appreciated.