From 9ec4df8f628b33a68a4c1f4a80a133a1e4460bde Mon Sep 17 00:00:00 2001 From: Junwei Zhao Date: Fri, 3 Jan 2020 16:07:09 +1100 Subject: [PATCH] Update css --- assets/css/custom.css | 1 + categories/go.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/assets/css/custom.css b/assets/css/custom.css index 3525380..e4d902e 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -674,6 +674,7 @@ body { .markdown-section blockquote p { font-weight: 600; margin-left: 0; + padding: 1em 0; } .markdown-section iframe { margin: 1em 0; diff --git a/categories/go.md b/categories/go.md index 4d38eb6..d2dbae0 100644 --- a/categories/go.md +++ b/categories/go.md @@ -46,6 +46,7 @@ make([]int, 2, 5) ## Closure ## Channel + - Normal channel ```go messages := make(chan string) @@ -59,6 +60,7 @@ msg := <-messages ```go ch := make(chan Task, 3) ``` + ## Big Numbers Package big implements arbitrary-precision arithmetic (big numbers).