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

Bullet points for unordered list #7

Closed
tianyunwu opened this issue Jan 22, 2017 · 4 comments
Closed

Bullet points for unordered list #7

tianyunwu opened this issue Jan 22, 2017 · 4 comments

Comments

@tianyunwu
Copy link

I am wondering if there is an way to use bullet point as the symbol of unordered list? I followed the kramdown syntax and used the the asterisk symbol (*) to mark list elements, but the html output gave me something that looked like right shrift operator. Is it something that I should expect from using this Jekyll theme? Thank you in advance for helping me out!

@benbalter
Copy link
Contributor

@tianyunwu Can you provide a screenshot of your output?

@tianyunwu
Copy link
Author

@benbalter
Here is the markdown snippet:
image
Here is the corresponding output:
image
As you can see, the symbol used to mark each entry of the unordered list is a right shrift operator ('>>'), should I modify the CSS files to get the following effect:

This is a test.

  • this is test 1.0
  • this is test 2.0
  • this is test 3.0

@en9inerd
Copy link

en9inerd commented Jan 28, 2017

Hello @tianyunwu !

Is it something that I should expect from using this Jekyll theme?

Yes.
Asterisk symbol (*), hyphen symbol (-) and plus symbol (+) have same meaning in Markdown. And standard output for this will be bullet point, but this theme uses shift operator.
But you can customize this for yourself, just put this in assets/css/style.scss:

ul li {
  list-style: disc;
}

ul li:before {
    content: none
}

@tianyunwu
Copy link
Author

@p0gr0mist Thank you very much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants