Pelican: Embed video in markdown

Created on 26 Sep 2013  ·  3Comments  ·  Source: getpelican/pelican

Hi, is there a way to embed youtube/vimeo videos? The plugin that exists is only for rst and the embed code does not work/only create an iframe of the blog itself.

Most helpful comment

The Markdown spec allows you to put <script> and any other HTML tags directly in your Markdown source. If there is a particular problem with the embed code you are using, it most likely has nothing to do with Pelican.

Personally, I host my videos directly, in which case it's very easy to simply include the relevant tags right in the Markdown source:

<script src="http://vjs.zencdn.net/4.0/video.js"></script>

<video id="pelican-installation" class="video-js vjs-default-skin" controls
preload="auto" width="683" height="384" poster="/static/screencasts/pelican-installation.png"
data-setup="{}">
<source src="/static/screencasts/pelican-installation.mp4" type='video/mp4'>
</video>

Resulting video: http://hackercodex.com/guide/pelican-static-site-generator-install/

All 3 comments

The Markdown spec allows you to put <script> and any other HTML tags directly in your Markdown source. If there is a particular problem with the embed code you are using, it most likely has nothing to do with Pelican.

Personally, I host my videos directly, in which case it's very easy to simply include the relevant tags right in the Markdown source:

<script src="http://vjs.zencdn.net/4.0/video.js"></script>

<video id="pelican-installation" class="video-js vjs-default-skin" controls
preload="auto" width="683" height="384" poster="/static/screencasts/pelican-installation.png"
data-setup="{}">
<source src="/static/screencasts/pelican-installation.mp4" type='video/mp4'>
</video>

Resulting video: http://hackercodex.com/guide/pelican-static-site-generator-install/

Another alternative: install mdx_video plugin then simply drop the youtube link in your Markdown file as-is (example).

@kdeldycke thanks your solution worked:)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

mwcz picture mwcz  ·  5Comments

nurupo picture nurupo  ·  5Comments

kiljungsub picture kiljungsub  ·  6Comments

georgiastuart picture georgiastuart  ·  7Comments

kele14x picture kele14x  ·  7Comments