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).