How to include files .html
in a markdown file interpreted and transformed by jekyll into another .html
file ?
_includes
folder._includes
folder.Note: If you want to include examples about Jekyll, you need to create raw
blocks Doc
{% include <my_file_path_within_includes_folder> %}
We have _includes/foobar.html
with content:
<p>This is an inline span <span style="border: 1px solid black">Hello World</span> element inside a paragraph.</p>
And we included here in this file with:
{% include foobar.html %}
Giving the result:
This is an inline span Hello World element inside a paragraph.
Here is a bokeh example, with a previous project:
It is possible that when including TWO BOKEH FILES, there would be only the first one rendering correctly.
This is a problem of <div>
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.
>> You can subscribe to my mailing list here for a monthly update. <<