-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhtmlgen.py
144 lines (132 loc) · 5.27 KB
/
htmlgen.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
def genHtmlProblem(param):return """
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/themes/prism-tomorrow.min.css" integrity="sha512-vswe+cgvic/XBoF1OcM/TeJ2FW0OofqAVdCZiEYkd6dwGXthvkSFWOoGGJgS2CW70VK5dQM5Oh+7ne47s74VTg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/plugins/line-numbers/prism-line-numbers.min.css" integrity="sha512-cbQXwDFK7lj2Fqfkuxbo5iD1dSbLlJGXGpfTDqbggqjHJeyzx88I3rfwjS38WJag/ihH7lzuGlGHpDBymLirZQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cabin" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="../styles.css">
<link rel="stylesheet" type="text/css" href="../content.css">
<body>
<div class="card">
<h2>Problem: %s</h2>
<br>
<div>
<b>Solution Contributor:</b> <a target="_blank" href="https://github.com/DecSP">Cao Son Nguyen</a>.<br>
<a target="_blank" href="%s">View on CSES</a>
</div>
<h3>Code</h3>
<ul>
<pre class="line-numbers">%s</pre>
</ul>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/components/prism-core.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/plugins/autoloader/prism-autoloader.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/plugins/line-numbers/prism-line-numbers.min.js" integrity="sha512-dubtf8xMHSQlExGRQ5R7toxHLgSDZ0K7AunqPWHXmJQ8XyVIG19S1T95gBxlAeGOK02P4Da2RTnQz0Za0H0ebQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
"""%param
def genHtmlIndex(sidebar):
re=""
for cate in sidebar:
tmp="<summary>%s</summary>"%cate
for title in sidebar[cate]:
tmp+="""<li><a href="Javascript:void(0);" id="about" onclick="loadHtml('%s/%s.html')">%s</a></li>\n"""%(cate,title,title)
re+="<details>%s</details>"%tmp
return """
<!DOCTYPE html>
<html>
<head>
<title>CSES Sols</title>
<meta name="theme-color" content="#57CC99">
<meta property="og:image" content="public/og.png"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://csessolutions.netlify.app/"/>
<meta property="og:title" content="CSES Solutions"/>
<meta property="og:description" content="We provide our solutions for coding problems of CSES site that is owned by Antti Laaksonen & Topi Talvitie during our data structures and algorithms learning. Most of the solutions are written in C++ and Python programming language."/>
<link rel="icon" href="public/icon.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cabin" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fugaz+One" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" type="text/css" href="styles.css">
<script>
var sideCate='';
var sideProb='';
function highlightSide(){
const cates=document.getElementsByTagName('summary');
for (const cate of cates){
if (cate.innerHTML==sideCate){
cate.classList.toggle('highlight')
for (const prob of cate.parentElement.children){
if (prob.firstChild.innerHTML==sideProb){
prob.classList.toggle('highlight')
break;
}
}
break;
}
}
}
function loadHtml(filename){
document.getElementById('content').innerHTML = '<iframe class="iframe" frameborder="0" src="'+filename+'">';
const collection=filename.split('/');
highlightSide();
if (collection.length==2){
sideCate=collection[0]
sideProb=collection[1].substring(0,collection[1].length-5)
highlightSide();
document.title=`${sideProb} | CSES Sols`;
}
else{
sideCate=''
sideProb=''
document.title=`CSES Sols`;
}
}
function clearNav(){
document.getElementById('home').style.textDecoration="none";
document.getElementById('about').style.textDecoration="none";
}
function setNav(id){
if(id === 'home'){
document.getElementById('home').style.textDecoration="underline";
}
if(id === 'contact'){
document.getElementById('about').style.textDecoration="underline";
}
}
var open = 0;
if(screen.width <= 670){
document.getElementById('sidebar').style.display="none";
}
function showSidebar(){
open++;
if(open%2 ==1){
document.getElementById('sidebar').style.display="block";
}
else if(open%2 == 0){
document.getElementById('sidebar').style.display="none";
}
}
</script>
</head>
<body>
<div class="header">
<a href="Javascript:void(0);"><span>CSES Algo...</span></a>
<div class="navbar">
<a href="Javascript:void(0);" id="about" onclick="loadHtml('about.html')">About us</a>
</div>
</div>
<div id="main">
<div class="sidebar" id="sidebar">
%s
</div>
<div class="content" id="content">
</div>
</div>
</body>
</html>
"""%re