I want to be able to style my li
list items when converted from markdown without having to tag them.
Specifically: I want to make bold the first part of a list item when it is formed like a key value pair.
The visual result should look like the equivalent of this:
<ul>
<li><strong>key: </strong>value</li>
</ul>
So, is there a way to select the string inside the li
item up to the colon?