I would like to have some text like on the right...
##Features
* Feature 1
* Feature 2
* Feature 3
and a Youtube video on the left. How to do it properly?
I tried things like this, unsucessfully:
| | |
|-|-|
|<iframe width="560" height="315" src="https://www.youtube.com/embed/vNp85kiMXK0" frameborder="0" allowfullscreen></iframe>|
##Features
* Feature 1
* Feature 2
* Feature 3
|
Edit
I also tried this:
<table>
<tr>
<td width="50%">
<iframe width="300" height="315" src="https://www.youtube.com/embed/vNp85kiMXK0" frameborder="0" allowfullscreen></iframe>
</td>
<td width="50%">
##Features
* Feature 1
* Feature 2
* Feature 3
</td>
</tr>
</table>
but then impossible to use Markdown in the table anymore: the Markdown is not parsed and is rendered by Parsedown like normal text...