diff --git a/_sass/2017/markdown/table.scss b/_sass/2017/markdown/table.scss index 557b9c052..ffa6db869 100644 --- a/_sass/2017/markdown/table.scss +++ b/_sass/2017/markdown/table.scss @@ -50,11 +50,9 @@ .MarkdownBody table.-shortcuts { code { font-size: 1em; - padding: 3px 8px; + padding: 5px 6px; + padding-left: 8px; // compensation background: #fafafa; - box-shadow: - 0 2px 0 rgba(0, 0, 0, 0.2), - inset 0 0 0 1px rgba(0, 0, 0, 0.05); border-radius: 3px; margin-right: 2px; letter-spacing: 0.2em; diff --git a/sh.md b/sh.md index 13fca9aa0..4b41d83d3 100644 --- a/sh.md +++ b/sh.md @@ -453,7 +453,7 @@ pwd # still in first directory python hello.py > output.txt # stdout to (file) python hello.py >> output.txt # stdout to (file), append python hello.py 2> error.log # stderr to (file) -python hello.py 2>&1 # stdout to stderr +python hello.py 2>&1 # stderr to stdout python hello.py 2>/dev/null # stderr to (null) ```