Skip to content

Commit 22c6363

Browse files
committed
feat: GFM
1 parent 0846f8a commit 22c6363

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

content/home/home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ published: false
33
fixed: false
44
---
55

6-
반갑습니다. 개발자 차한음입니다.
6+
반갑습니다. 개발자 차한음입니다.

layout/styles/layout.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ body {
1515
-webkit-font-smoothing: antialiased;
1616
-moz-osx-font-smoothing: grayscale;
1717
-webkit-text-size-adjust: 100%;
18-
19-
2018
}
2119

2220
body {

main.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
"strings"
1616

1717
"github.com/yuin/goldmark"
18+
"github.com/yuin/goldmark/extension"
1819
"github.com/yuin/goldmark/parser"
1920
"github.com/yuin/goldmark/renderer/html"
2021
"gopkg.in/yaml.v2"
@@ -41,6 +42,7 @@ func main() {
4142
html.WithUnsafe(), // markdown에서 html tag 사용할 수 있게 활성화함
4243
),
4344
goldmark.WithExtensions(
45+
extension.GFM,
4446
highlighting.NewHighlighting(
4547
highlighting.WithStyle("github"),
4648
highlighting.WithFormatOptions(

0 commit comments

Comments
 (0)