Open BenocxX opened 2 months ago
Might be an issue with the initialization of the highlighter plugin. I will look into it later today.
Also, there looks to be some sort of nesting issue.
The RevealSlides
component doesnt do much beside being a react wrapper. It does do some things to make sure initialization occurs once, theme is loaded, and user is able to reconfigure without recreating the component. There was an issue with initialization of the highlighter plugin in the past which required manual initialization. If that issue has been resolved, then the reinitialization might be causing the problem. I will investigate and let you know.
These things help make this package better for others so feel free to make create more issues if you come accross any.
Wonderful, I'll let you know if I find more!
I'll be using this package a lot in the near future, I might try to dive into the code and become a contributor if I find the time to do so :)
That would be awesome! Some of my other projects benefited greatly from ideas and fixes from contributors.
Good news! I have narrowed down to the issue and my intuition was close. The highlighter plugin is being initialized twice, but not because of the previous fix I implemented.
Still working on a solution....
Problem is fixed and I am currently testing for any other issues. I plan to write some vitest
tests to make sure other things havnt gotten broken.
If you want to try out the fix, you can do so by uninstalling react-reveal-slides
:
npm uninstall react-reveal-slides
and then installing from the fix-them-loading
branch:
npm install bouzidanas/react-reveal-slides#fix-theme-loading
Turns out my original theory was spot on but there were some other things that obfuscated the problem.
Woaw awesome! I'll try it out in a few days! Thanks a lot for you work :)
It's working as expected! Thanks for the fix!
I tried following this guide to show a code block with highlighted lines but the opacity is very low for unknown reasons... The problem only appears when using React. When I make a simple html file with RevealJS it's working as expected.
Here's what it should look like:
Here's what it looks like (the colors are not the same because I use a different theme. Switching to other theme did not fix the issue):
And here's what it looks like when I disable line highlighting:
I tried to inspect the lines to see if there was a css property lowering the opacity but I didn't find any. Mind you, I'm not used to HighlightJS so I may have missed something.
Here's the full code:
Thanks for the help!
Unrelated: Why's there a
1
to the left of the line numbers column? I can open an other issue if you'd prefer..?