html - Youtube video and text side by side in Markdown -
i have text on right...
##features * feature 1 * feature 2 * feature 3
and youtube video on left. how 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 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 impossible use markdown in table anymore: markdown not parsed , rendered parsedown normal text...
markdown deliberately simple:
markdown not replacement html, or close it. syntax small, corresponding small subset of html tags. idea not create syntax makes easier insert html tags. in opinion, html tags easy insert. idea markdown make easy read, write, , edit prose. html publishing format; markdown writing format. thus, markdown’s formatting syntax addresses issues can conveyed in plain text.
it doesn't include support lots of things, including tables¹ , columns. things this, use html:
for markup not covered markdown’s syntax, use html itself. there’s no need preface or delimit indicate you’re switching markdown html; use tags.
¹some markdown implementations add support things aren't in original spec, tables being common one. support isn't standardized, , you'll have specify implementation you're using if want implementation-specific solution.
Comments
Post a Comment