-1

How to add an unordered list inside a note in Markdown without additional extensions? I tried the following syntax but the Note disappears and the unordered list appears without being enclosed in a note. Is there a workaround to insert a list into a note?

NOTE:

  • hello
  • hi
Induja
  • 19
  • 3

1 Answers1

2

When I understand it correctly you would like to have something like:

NOTE:

  • hello
  • hi

I could accomplish this by means of:


> **_NOTE:_**  
> * hello
> * hi

i.e. by placing the entire required text in blockquotes

albert
  • 8,285
  • 3
  • 19
  • 32