Fix GenerateHtml typo. Goddammit semicolons

This commit is contained in:
3eef8a28f26fb2bcc514e6f1938929a1f931762 2023-02-09 22:25:43 -05:00
parent 0f32d495b4
commit f2adf0dc8e

View file

@ -195,6 +195,8 @@ void generate_course_page(const std::string& course_id,
tag(os,TAG::END,"title");
tag(os,TAG::INLINE) << R"(<meta property="og:title" content=")" << course_id << " - " << course_name << R"(">)" << '\n';
tag(os,TAG::INLINE) << R"(<meta property="og:description" content=")" << description_meta << R"(">)" << '\n';
tag(os,TAG::INLINE) << R"(<link rel="stylesheets" href="../css/common.css">)" << '\n';
tag(os,TAG::INLINE) << R"(<link rel="stylesheets" href="../css/coursedisplay.css">)" << '\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")");