Use the following code:
html:
- Should be Item 1
- Should be Item 1.1
- Should be Item 1.2
- Should be Item 1.3
- Should be Item 1.3.1
- Should be Item 1.4
- Should be Item 2
css:
ol { counter-reset: item }
ol li { display: block }
ol li:before { content: counters(item, ".") ". "; counter-increment: item }