Move Prism files to a properly spelled directory

Moved the Prism project files from /common/prisim/ to /common/prism/.
Updated the code in /common/page_format.js that loads these files.
This commit is contained in:
2022-07-06 15:17:41 -04:00
parent 87a07aaf02
commit d743fb297b
3 changed files with 26 additions and 2 deletions
+2 -2
View File
@@ -10,9 +10,9 @@ function format_page(){//Set the title of the page based on the main header, <h1
var script = document.createElement('script');
var style_sheet = document.createElement('link');
script.type = 'text/javascript';
script.src = '/common/prisim/prism.js';
script.src = '/common/prism/prism.js';
style_sheet.type = 'text/css';
style_sheet.href = '/common/prisim/prism.css';
style_sheet.href = '/common/prism/prism.css';
style_sheet.rel = 'stylesheet';
document.head.appendChild(script);
document.head.appendChild(style_sheet);