Pentest-Cheatsheets icon indicating copy to clipboard operation
Pentest-Cheatsheets copied to clipboard

Adding css on last line fix

Open carlosmaroot opened this issue 3 years ago • 0 comments

This is the output at first with the app.add_stylesheet('css/custom.css') line error

File "/opt/Pentest-Cheatsheets/conf.py", line 187, in setup app.add_stylesheet('css/custom.css') AttributeError: 'Sphinx' object has no attribute 'add_stylesheet'

Changing the last line app.add_stylesheet('css/custom.css')

To this one app.add_css_file('css/custom.css')

The issue is from sphinx and its mentioned here https://github.com/sphinx-doc/sphinx/issues/7747

carlosmaroot avatar Jun 16 '21 19:06 carlosmaroot