Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Markdown list inside a table

Tags:

html

markdown

As per title,

Is it possible to put a list inside a table in markdown?

I tried to search it up but could not find anything.

A Table being something like:

Fruit    |Color
---------|----------
Apples   |Red
Pears    |Green

and a list being something like

  • List item 1
  • List item 2
like image 878
krilovich Avatar asked Jul 30 '13 20:07

krilovich


1 Answers

You can combine HTML inside Markdown to create the list, like so:

Version | Name | Features
-------:|------|----------
1.0     |Alpha |<ul><li>Supports</li><li>lists</li><li>with HTML</li></ul>
like image 119
Dorgrin Avatar answered Oct 22 '22 19:10

Dorgrin