# Including HTML files within markdown for Jekyll. # Introduction How to include files `.html` in a markdown file interpreted and transformed by jekyll into another `.html` file ? 1. They must be put in the `_includes` folder. 2. They must be inserted using a liquid include, and the relative path with the `_includes` folder. *Note*: If you want to include examples about Jekyll, you need to create `raw` blocks [Doc](https://jekyllrb.com/docs/liquid/tags/) {% raw %} `{% include %}` {% endraw %} # Dummy File We have `_includes/foobar.html` with content: ```html

This is an inline span Hello World element inside a paragraph.

``` And we included here in this file with: {% raw %} `{% include foobar.html %}` {% endraw %} Giving the result: {% include foobar.html %} # Bokeh Example Here is a bokeh example, with a previous project: {% include polblog_rev_0.9_1.html %} ## Issue with Bokeh It is possible that when including **TWO BOKEH FILES**, there would be only the first one rendering correctly. This is a problem of `
` naming. If you open the code explorer (`ctrl` + `maj` + `C`), you will see that the code is present, but not interpreted. For this, you need to modify Bokeh IDs so they are unique.