Skip to content

Commit 9e028cb

Browse files
authored
Merge pull request #1 from openstack-kr/notion-zip-init
Notion ZIP import로 강의 문서/이미지 생성 및 네비 반영
2 parents 1aa5ed1 + 526c3a0 commit 9e028cb

25 files changed

Lines changed: 1477 additions & 4 deletions

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/.quarto/
2-
docs/*
2+
/docs/*
3+
4+
/tools/imports/**/*.zip
35

46
**/*.quarto_ipynb

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ title: "페이지 제목"
8080

8181
## 라이선스
8282

83-
이 프로젝트는 MIT 라이선스 하에 배포됩니다.
83+
이 프로젝트는 MIT 라이선스 하에 배포됩니다.

_quarto.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@ website:
2828
file: lectures/ch1_lec.qmd
2929
- text: "2장. 오픈스택 설치 가이드"
3030
file: lectures/ch2_lec.qmd
31+
- section: "6장. Neutron"
32+
file: lectures/ch6_lec.qmd
33+
contents:
34+
- text: "6-1. Neutron의 agent에 대해 알아보기"
35+
file: lectures/ch6/neutron_agents.qmd
36+
- text: "6-12. SNAT/DNAT란?"
37+
file: lectures/ch6/snat_dnat.qmd
38+
- text: "6-15. OVS와 VXLAN를 이용해 가상 네트워크 만들기"
39+
file: lectures/ch6/ovs_vxlan_vpn.qmd
40+
41+
42+
43+
3144

3245
format:
3346
html:

custom.scss

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,28 @@ main {
8181
.bi {
8282
color : white;
8383
margin-right: 0.2rem;
84-
}
84+
}
85+
86+
// -----------------------------------------------------------------------------
87+
// 코드 블록 / ASCII 다이어그램 스타일
88+
// -----------------------------------------------------------------------------
89+
90+
// 모든 코드 블록에 공통 배경/여백/폰트 적용 (언어와 무관)
91+
pre code,
92+
pre.sourceCode {
93+
display: block;
94+
padding: 0.75rem 1rem;
95+
margin: 1rem 0;
96+
border-radius: 6px;
97+
background-color: #f8f9fb;
98+
font-family: 'JetBrains Mono', Menlo, Monaco, Consolas, 'Courier New', monospace;
99+
font-size: 0.9rem;
100+
line-height: 1.5;
101+
overflow-x: auto;
102+
}
103+
104+
// ASCII 다이어그램(예: ```text)도 코드 블록처럼 보이도록 별도 보정
105+
code.language-text,
106+
code.sourceCode.text {
107+
background-color: #f5f5f7;
108+
}
162 KB
Loading
49.4 KB
Loading
189 KB
Loading
273 KB
Loading
80.5 KB
Loading
90.3 KB
Loading

0 commit comments

Comments
 (0)