Skip to content

Commit c06dbf1

Browse files
committed
1
1 parent a413849 commit c06dbf1

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

web/markdown.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ function load_highlight_link_stylesheet() {
4545
//link.href = "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/styles/default.min.css";
4646
//link.href = "https://unpkg.com/@highlightjs/cdn-assets@11.11.1/styles/default.min.css";
4747
//link.href = "https://unpkg.com/@highlightjs/cdn-assets@11.11.1/styles/atom-one-dark.min.css";
48-
link.href = "https://unpkg.com/@highlightjs/cdn-assets@11.11.1/styles/github-dark.css";
48+
//link.href = "https://unpkg.com/@highlightjs/cdn-assets@11.11.1/styles/github-dark.css";
49+
link.href = "https://unpkg.com/@highlightjs/cdn-assets@11.11.1/styles/github.css";
4950
link.rel = "stylesheet";
5051
document.head.appendChild(link);
5152
}

web/page-markdown/page4.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@
33
## 4. 코드
44
* 예제
55

6-
<pre>
7-
<code>
8-
```c++
6+
<pre><code>
7+
```cpp
98
int main()
109
{
1110
printf("Hello, Honeymon");
1211
return 0;
1312
}
1413
```
15-
</code>
16-
</pre>
14+
</code></pre>
1715

1816
* 미리보기
1917

20-
> ```c++
18+
> ```cpp
2119
> int main()
2220
> {
2321
> printf("Hello, Honeymon");

0 commit comments

Comments
 (0)