Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Insert HTML to Jekyll post

I'd like to include some Web Audio API HTML5 code into a Jekyll post. Here's a clone of the HTML page + Javascript code that I'd like to include:

view-source:http://www.smartjava.org/examples/webaudio/example3.html

How should this be achieved?

like image 424
Goren Berdichevsky Avatar asked Jan 27 '15 19:01

Goren Berdichevsky


1 Answers

Actually, if you are using markdown to create your posts, you can use Liquid's include tag.

You just have to create a folder with the name _includes/ in the DocumentRoot of your project, then, create an HTML file inside, for example "mycomponent.html" and call it in your post with something like this:

{% include mycomponent.html %}

This file can have any HTML/CSS/JS you want.

Notice how you include just your HTML file; the external CSS/JS can be included in the layout that you're using.

like image 194
kmil0v Avatar answered Sep 29 '22 13:09

kmil0v