Html – CSS class to make ordered list with circled numbers
I'm using Pandoc Markdown, which allows Makrdown to nest inside of HTML tags. I want to get ordered lists with circled numbers as follows: <ol> <li style="list-style-type: '❶ '"> First item </li> <li style="list-style-type: '❷ '"> Second item </li> </ol>…