Logs for #nikola for 2025-10-29

16:09:34 <SeanFenian> Hey folks ...  I think I've found s generation/rendering bug affecting at least nikola 8.3.3.  If I add a custom css entry, em { font-weight: bold; font-style: italic; } it ends up as the last rule in the combined css, but <em> objects render as italic ONLY.  If I use <b><i> or create a class .bi { bold italic }, THAT works as expected, but the styling of <em> just doesn't stick.  Any thoughts?
16:14:47 <SeanFenian> (Part of this I suspect is related to things replacing <b> with <strong> and <i> with <em>.)
16:19:03 <SeanFenian> what it comes down to functionally is that if I want any text in a paragraph to be bold italic, I have to '.. raw:: html' that paragraph.
16:24:07 <SeanFenian> (I should probably mention I'm using .rst source)
23:32:03 <SeanFenian> tl,dr:  the fundamental problem above being that CSS for <em> seems to be ignored
23:33:18 <SeanFenian> though I've noticed now looking at page source that it uses <em> a lot where I'm especvting the markup to yield <i>
23:33:26 <SeanFenian> expecting, even