You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 27, 2022. It is now read-only.
It swaps the host from markdownpedia.tk to the local host, but does not change the protocol. As it was running locally the protocol used is http, but to load the css it used https.
So analyzing the code more I realized that this script is not necessary, (or maybe it is depending on how you are hosting the site, in this case i'm sorry for opening this issue), because HTML itself is already capable of doing this replacement.
Solução: Perform the following steps for the equivalent cases in the project
1 Remove the url formatting script
2
<!-- Replace this --><linkid="style" rel="stylesheet" href="https://markdownpedia.tk/server/vital/style.css" /><!-- For this --><linkid="style" rel="stylesheet" href="/server/vital/style.css" />
OBS: If this is confirmed as a problem and not something intentional, I put myself at your disposal to make a PR fixing the problem
First I'm sorry for the English.
I realized that what was generating this error was the javasscript scripts in the templates.html file:
It swaps the host from markdownpedia.tk to the local host, but does not change the protocol. As it was running locally the protocol used is http, but to load the css it used https.
So analyzing the code more I realized that this script is not necessary, (or maybe it is depending on how you are hosting the site, in this case i'm sorry for opening this issue), because HTML itself is already capable of doing this replacement.
OBS: If this is confirmed as a problem and not something intentional, I put myself at your disposal to make a PR fixing the problem