Close <script> tag

This commit is contained in:
3eef8a28f26fb2bcc514e6f1938929a1f931762 2023-02-10 18:42:45 -05:00
parent 51dc7bd0f8
commit 21d147f672
1 changed files with 2 additions and 2 deletions

View File

@ -229,8 +229,8 @@ void generate_course_page(const std::string& course_id,
tag(os,TAG::INLINE) << R"(<meta property="og:description" content=")" << description_meta << R"(">)" << '\n';
tag(os,TAG::INLINE) << R"(<link rel="stylesheet" href="../css/common.css">)" << '\n';
tag(os,TAG::INLINE) << R"(<link rel="stylesheet" href="../css/coursedisplay.css">)" << '\n';
tag(os,TAG::INLINE) << R"(<script src="../js/fuse.js">)" << '\n';
tag(os,TAG::INLINE) << R"(<script src="../js/search_helper.js">)" << '\n';
tag(os,TAG::INLINE) << R"(<script src="../js/fuse.js"></script>)" << '\n';
tag(os,TAG::INLINE) << R"(<script src="../js/search_helper.js"></script>)" << '\n';
tag(os,TAG::END,"head");
tag(os,TAG::BEGIN,R"(body class="search_plugin_added")");
tag(os,TAG::BEGIN,R"(div id="qlog-header")");