Skip to content Skip to sidebar Skip to footer

Youtube Video And Text Side By Side In Markdown

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 t

Solution 1:

Markdown is deliberately simple:

Markdown is not a replacement for HTML, or even close to it. Its syntax is very small, corresponding only to a very small subset of HTML tags. The idea is not to create a syntax that makes it easier to insert HTML tags. In my opinion, HTML tags are already easy to insert. The idea for Markdown is to make it easy to read, write, and edit prose. HTML is a publishing format; Markdown is a writing format. Thus, Markdown’s formatting syntax only addresses issues that can be conveyed in plain text.

It doesn't include support for lots of things, including tables¹ and columns. For things like this, simply use HTML:

For any markup that is not covered by Markdown’s syntax, you simply use HTML itself. There’s no need to preface it or delimit it to indicate that you’re switching from Markdown to HTML; you just use the tags.

¹Some Markdown implementations add support for things that aren't in the original spec, with tables being a common one. This support isn't well standardized, and you'll have to specify the implementation that you're using if you want an implementation-specific solution.

Post a Comment for "Youtube Video And Text Side By Side In Markdown"