Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a list with bigger font in markdown

I'm using markdown in jupyter, so I create bullet lists the usual way :

- Item1

- Item2

which appears as :

  • Item1
  • Item2

Now say I want the font of the list to be bigger, e.g. like the one provided by heading 2 (##), is there a way to do it? What I tried

# - Item1

# - Item2

fails and appears simply as header text and not as a bigger list :

- Item1

- Item2

like image 912
Lorah Attkins Avatar asked Jan 21 '16 21:01

Lorah Attkins


1 Answers

Make the hashtags come after the hyphen, like so - ## item1

  • item1

like image 185
Moses Koledoye Avatar answered Oct 02 '22 08:10

Moses Koledoye