Closed SuperSodaSea closed 2 years ago
The URL scheme is missing for googlecode.min.css:
googlecode.min.css
<link type="text/css" rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.0.3/styles/googlecode.min.css">
It works fine on a real website, but if you open the output .html file locally, the browser will assume the scheme is file:, causing the error:
.html
file:
Adding an explicit https: solves the problem.
https:
The URL scheme is missing for
googlecode.min.css
:It works fine on a real website, but if you open the output
.html
file locally, the browser will assume the scheme isfile:
, causing the error:Adding an explicit
https:
solves the problem.