how to include video in jekyll markdown blog

后端 未结 6 2047
日久生厌
日久生厌 2020-12-23 16:00

I just started blogging using jekyll. I write my posts in markdown. Now, I want to include a youtube video in my post. How can I do this?

Also, I dont really like t

6条回答
  •  难免孤独
    2020-12-23 16:48

    In my case issue has been resolved with jQuery:

    jQuery

    $('.x-frame.video').each(function() {
      $(this).after("");
    });
    

    Usage

    Note that whitespace is required between

提交回复
热议问题