36

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.

Yanick Nedderhoff
  • 1,174
  • 3
  • 18
  • 35
  • usually, markdown is used to export to HTML (or other formats)... what do you mean with "The only recommended ways I found so far are using HTML, which I want to avoid"? btw, see http://stackoverflow.com/help/how-to-ask – mb21 Sep 09 '15 at 12:42
  • Yeah, that's the point. Export to HTML, not write in HTML. Often you can mix Markdown and HTML, but my question is, if there is a way to write it in Markdown. – Yanick Nedderhoff Sep 09 '15 at 14:03
  • 1
    use CSS to remove the bullets of the generated HTML list? – mb21 Sep 09 '15 at 14:23
  • I appreciate your idea, but I am looking for a solution for doing this with Markdown only. I know I could modify the HTML or CSS afterwards, but that's not what I'm looking for. If there is no way to do that, that would be an answer, too ;) – Yanick Nedderhoff Sep 09 '15 at 15:18
  • So you want to change the way that the browser displays the HTML rendered by Markdown? That would require CSS. Or if you want different HTML to be output (which doesn't use `
  • `), then that would need to use raw HTML in your Markdown (although, it is not clear to me what that HTML would be without some CSS to make it look like a list). There are no other options.
  • – Waylan Sep 09 '15 at 15:43