Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

further configuration for disabling ordered list #321

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,16 @@ would be a more complex template file:
You can also override the default bibliography template, by passing the
`--template` or `-T` option parameter to the bibliography tag.

Some of the bibliography template styles, such as `acm-sigchi-proceedings`, list the references in an ordered list, resulting in redundant indices. This is due to the ordered list created by Jekyll Scholar per reference item. You can work around it by specifying the HTML tags like so:
```
scholar:
style: acm-sigchi-proceedings
bibliography_template: bib
bibliography_list_tag: div
bibliography_item_tag: div
```
As a result, the references will be put in `div` items instead of ordered list items, negating the redundant indices.

### Citations

If you want to reference books or papers from your bibliography in your blog
Expand Down