Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lists without bullets points in Markdown

Tags:

markdown

I want to create a list in Markdown, but without bullet points. Is that possible?

The only recommended ways I found so far are using HTML, which I want to avoid.

like image 531
Yanick Nedderhoff Avatar asked Sep 09 '15 08:09

Yanick Nedderhoff


People also ask

How do you make a list not display bullet points?

Adding the "list-style: none" CSS class to the unordered list (<ul>) or ordered list (<ol>) tag removes any bullet or number.

How do you remove bullets from a list?

Making CSS Remove Bullets It is possible to remove bullets from ul lists by setting the CSS list-style-type property to none . As a result, the bullets disappear from the list. Note: to get rid of the automatic indentation, you can also set margin and padding to 0.

How do I put bullet points in markdown?

Bullet point lists can be created by starting each line with an asterisk followed by a space before the content of the bullet point.

How do you create a list in markdown?

To create an unordered list, add dashes ( - ), asterisks ( * ), or plus signs ( + ) in front of line items. Indent one or more items to create a nested list.


1 Answers

No, with pure markdown this is not possible.

Think of Markdown as a simpler syntax for HTML. To change the styling you'll need to add a CSS to the generated HTML.

like image 135
mb21 Avatar answered Oct 01 '22 05:10

mb21