Lists

I am using HTML instead of markdown to get practice with it, but when I create a list, ul or ol, there is no indent and there is no bullet or numbering. Is there a way to change that? I have seen that it says these are usable html commands but there is not really any documentation specific to the html side of things for jekyll.

The <ul> and <ol> tags don’t do much by themselves. They create a list, but you need to then add list items to them with the <li> tag. Here’s an example:

<ul>
  <li>Lions</li>
  <li>Tigers</li>
  <li>Bears</li>
</ul>

This gets rendered as:

  • Lions
  • Tigers
  • Bears

Some more info here: HTML Tags - Happy Coding

That is how I had it set up but it just shows up like:

Lions
Tigers
Bears

Can you link to your full code so we can take a look?