forked from umbum/tistory_markdown_highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
49 lines (48 loc) · 1.73 KB
/
test.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script
src="http://code.jquery.com/jquery-1.12.4.js"
integrity="sha256-Qw82+bXyGq6MydymqBxNPYTaUXXq7c8v3CwiYwLLNXU="
crossorigin="anonymous"></script>
<script defer type="text/javascript" src="backquote_highlight.js" onload="bq_highlight()"></script>
</head>
<body>
<div class="article">
<div class="tt_article_useless_p_margin">
<p>``html <pre>``와 상관 없이, js에서는 내부 개행을 ``html <br>``가 아니라 ``\n``로 처리한다. Lorem ipsum dolor sit amet, consectetur ``adipisicing elit``</p>
<p>nbsp 테스트[``py code``]</p>
<p>붙여쓰기 테스트[``thisiscode``]</p>
<p>[thisiscode ] 테스트[``thisiscode ``]</p>
<p>[ thisiscode] 테스트[`` thisiscode``]</p>
<p></p>
<h3>block p test</h3>
<p>```</p>
<p>p block1</p>
<p>```</p>
<br>
<h3>block div test</h3>
<div>```</div>
<div>div block1 <b>bold</b></div>
<div><br /></p>
<div>two line br?</div>
<div>```</div>
<br>
<h3>block div div test</h3>
<div>
<div>```</div>
<div>div b<b>div</b>b block<1</div>
<div>```</div>
</div>
<br>
<h3>block div p test</h3>
<div>
<p>```</p>
<p>div p <b>bold</b> block\n</p>
<p>```</p>
</div>
</div>
</div>
</body>
</html>