Skip to content

Commit f6a1d83

Browse files
committed
feat: Restore markdown list style
1 parent 8b3771c commit f6a1d83

5 files changed

Lines changed: 54 additions & 1 deletion

File tree

assets/gopher.png

40.3 KB
Loading
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ published: true
55
fixed: false
66
---
77

8-
개발 후기..
8+
![](/assets/gopher.png)
9+
10+
작성 중...
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
date: 2025-09-26
3+
category: [개발 회고]
4+
published: true
5+
fixed: false
6+
---
7+
8+
노자께서 하신 말씀이 있다.
9+
10+
> 그 나아가는 것이 점차 멀어질수록 그 지혜는 더욱 적어진다.
11+
12+
맞는 말이다.
13+
14+
나는 2023년? 2024년? 그때 프론트엔드 프로그래밍을 하고 있을 무렵.
15+
이제는 더 이상 배울 것이 없다고 자신했다.
16+
웹 프로그램만 만들면서 무슨 자만심이었는가?
17+
18+
이제와서 보니까 처참하다. 하나도 모르고 있었다. Golang을 배우면서 컴퓨터에 대해서 조금씩 알게된다.
19+
배울게 천지이다.
20+
CS적인 지식이 배울 것이 천지이다.
21+
도대체 언제 배울까 손에 잡히질 않는다.
22+
23+
배울 수록 모르게 되는 것 같다.
24+
기존에 그냥 얼렁뚱땅 배웠음을 자각하게 된다.
25+
26+
개발을 한지 어언 5년이 넘어간다.
27+
개발자 차한음은 도대체 어떤 개발자인가?
28+
질문 해보는 날이다.
29+
30+
---
31+
32+
- Golang
33+
- Clang
34+
- Clojure
35+
- JavaScript
36+
- Swift

layout/styles/layout.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,19 @@ a, button, input, select, textarea {
6565
pre.chroma .line {
6666
display: block;
6767
}
68+
69+
ul {
70+
list-style: disc;
71+
}
72+
ol {
73+
list-style: decimal;
74+
}
75+
ul ul, ol ul {
76+
list-style-type: circle;
77+
}
78+
ul ul ul, ol ul ul, ul ol ul {
79+
list-style-type: square;
80+
}
6881
}
6982

7083
/* fix: Failed to resolve iPad Safari mobile mode touch element shrinking issue */

main.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ import (
3232

3333
// TODO: Email 추가하기
3434

35+
// TODO: Category fixed 기능 추가하기. posts list에서 category를 가장 윗쪽으로 올리는 기능임.
36+
3537
func main() {
3638
md := goldmark.New(
3739
goldmark.WithRendererOptions(

0 commit comments

Comments
 (0)