inukshuk / jekyll-scholar

jekyll extensions for the blogging scholar
MIT License
1.13k stars 101 forks source link

further configuration for disabling ordered list #321

Open LordAmit opened 3 years ago

inukshuk commented 3 years ago

Whether or not the ordered list is displayed with numbers can also be configured using CSS. I've always assumed that the stylesheet is the best way to handle this.

LordAmit commented 3 years ago

Hi!

Thanks for creating jekyll-scholar and responding! Really appreciate it.

About CSS approach - can you please elaborate a bit more about the approach you have in mind?

igravious commented 3 years ago

The CSS approach? Like this.

Add a custom assets/main.scss file:

---
---

@import "minima";

/* override defaults or provide more specificity */

h2.bibliography {
        background-color: #E0E0E0;
}

ol.bibliography li {
        list-style-type: none;
}

If you've any more/other questions, just ask.