I'm running a Ghost blog hosted on Ghost.io.
They're currently running a system-wide update from Ghost 0.11 to Ghost 1.0.
The update went fine, but I've lost the PrismJS syntax highliting. The code blocks all share the same look - black over creamy-white.
My default.hbs seems to be setup correctly:
{{!-- Styles'n'Scripts --}}
...
<link rel="stylesheet" type="text/css" href="{{asset "css/prism.css"}}" />
...
<script type="text/javascript" src="{{asset "js/prism.js"}}"></script> --}}
...
</body>
I have not changed the way I marked my code blocks:
```language-java
import com.package.test;
```
I've looked at Chrome dev console - there seems to be no errors.
Any leads?