-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
33 lines (30 loc) · 1.03 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<title>dcinside codeblock generator</title>
<meta name="description" content="디씨 코드 하이라이터 dcinside dc code highlighter" />
<link href="https://cdn.jsdelivr.net/npm/normalize.css" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<style id="themeCss"></style>
<script src="static/prism.js" type="text/javascript"></script>
</head>
<body class="grid">
<h1>디씨인사이드 복붙가능 코드블록 생성기</h1>
<textarea id="input">#include <iostream>
int main(int argc) {
	return argc - 1;
}</textarea>
<div id="options">
<select id="language"></select>
<button id="copyBtn">전체 복사</button>
<select id="theme"></select>
</div>
<div id="output">
<pre id="pre"><code id="code" class="language-cpp"></code></pre>
</div>
<footer>
<p>Powered by <a href="https://prismjs.com">prism.js</a>, presented by nanikit</p>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>