MrDogeBro / sphinx_rtd_dark_mode

Adds a toggleable dark mode to the Read the Docs theme for Sphinx.
sphinx-rtd-dark-mode.vercel.app
MIT License
49 stars 15 forks source link

Emphasized lines are not styled #37

Closed mrelbe1 closed 11 months ago

mrelbe1 commented 1 year ago

Emphasized lines in line listings are not styled:

Example:

.. code-block:: batch  
   :linenos:  
   :emphasize-lines: 3  

   @echo off  

   set WORKSPACES=C:\path\to\workspace  

   for /d %%s in (%WORKSPACES%\*) do (  
       rem Do something  
       )

Renders like this: Snag_1297e82

It's really hard to read the highlighted lines.

PR with a proposal is on its way.