diff --git a/core.css b/core.css index 0ff1268..25a6fb7 100644 --- a/core.css +++ b/core.css @@ -176,6 +176,8 @@ img { pre { padding: 20px 10px !important; background: #CCC; + border: 1px solid #888; + border-radius: 4px; } pre>code { color: #333; @@ -187,9 +189,6 @@ code { padding: 2px 6px; border-radius: 4px; } -pre.prettyprint { - border-radius: 4px; -} code.prettyprint { background: #CCC; padding: 2px 8px; diff --git a/posts/basic-http-routing-in-golang.html b/posts/basic-http-routing-in-golang.html index c238fcd..a423f9e 100644 --- a/posts/basic-http-routing-in-golang.html +++ b/posts/basic-http-routing-in-golang.html @@ -8,7 +8,7 @@

The accompanying repo for the code produced in this article is located on github.

Step 1

Here is our basic folder structure for this basic http routing example:

-
    basic-http-routing-in-golang/
+
    basic-http-routing-in-golang/
         main.go
 

As a starting point our main.go file looks like this:

diff --git a/posts/basic-http-routing-in-golang.md b/posts/basic-http-routing-in-golang.md index 98e494d..0135eb2 100644 --- a/posts/basic-http-routing-in-golang.md +++ b/posts/basic-http-routing-in-golang.md @@ -18,7 +18,7 @@ The accompanying repo for the code produced in this article is located [on githu Here is our basic folder structure for this basic http routing example: -
    basic-http-routing-in-golang/
+
    basic-http-routing-in-golang/
         main.go