We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I was hoping it would be possible to use the ⭐ or :star-icon: emoji/icon as my bullet for lists instead of the built-in checkbox or dot.
The text was updated successfully, but these errors were encountered:
This is possible using a little custom CSS.
<style> ul.stars { list-style: "⭐ "; list-style-position: outside; } ul.stars ul li { list-style-type: circle; } </style> { .stars } - Item 1 - Item 2 - Item 3
The content of that <style> block could also be moved out of the page and included site wide by adding to the _includes/head.html file.
<style>
_includes/head.html
<!-- include this snippet into the file _includes/head.html --> <style> ul.stars { list-style: "⭐ "; list-style-position: outside; } ul.stars ul li { list-style-type: circle; } </style>
The list syntax on the page would then just be the following:
{ .stars } - Item 1 - Item 2 - Item 3
The above custom style could also be inlined, as the following sample demonstrates:
{ style="list-style: '⭐ ';list-style-position: outside; li { list-style-type: circle; } " } - Item 1 - Item 2 - Item 3
Hope this helps.
Sorry, something went wrong.
Please see issue #603 and the following comment for several other samples on how to create icon lists, see
#603 (comment)
geoffreymcgill
No branches or pull requests
I was hoping it would be possible to use the ⭐ or :star-icon: emoji/icon as my bullet for lists instead of the built-in checkbox or dot.
The text was updated successfully, but these errors were encountered: