I have been learning Jekyll which uses Kramdown as a HTML preprocessor.
What I can't seem to work out is how to assign elements an id.
In Kramdown to created an Ordered List you just use
1.
2.
but how on earth do I assign this element an Id for CSS or for linking to?
So e.g.
<ul id="list">
<li id="1">1</li>
I tried tried
1. item {#}
but there was still no ID.
– Alan Auckland Mar 12 '16 at 00:02