` tags inline in markdown, wherever I want the plots to appear.
{% include /custom/bokeh_demo.html %}
I can place standard markdown content between the `div` tags, to my heart's delight.
Feel free to check out the [raw](https://raw.githubusercontent.com/p-mckenzie/p-mckenzie.github.io/master/_posts/2017-12-1-embedding-bokeh-with-github-pages.md) markdown file used to generate this post for the code in action.
# Diagnosing possible errors
1. Consider removing the `` tag and its contents from the output_file() HTML, as that can sometimes cause issues in rendering
```html
```
2. Check the Javascript function in the HTML file for a small syntax error:
```javascript
console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing")
clearInterval(timer);
```
Both of these lines should have a semicolon after them, so insert one after the `console.log()` call.
3. If your page is served via HTTPS (as Github Pages is), verify that the stylesheet/script links are also HTTPS addresses, and if not simply replace "http" with "https" in the generated URLs.