A couple site fixes.

- Enable compression options to shrink our HTML file sizes. I didn't realize the
compressor had options when I added it a few weeks ago. Tweaking the options
lets us get rid of more spaces, comments, and sundry other things.

- Fix font weight of all table content on the site. Whereas normal page content
has a weight of 300, table content was at 400 making it all look a little bolded.
Now it's all 300.
This commit is contained in:
Martin Taillefer 2017-05-26 07:00:03 -07:00
parent 7fcb1389dd
commit af1425911e
2 changed files with 11 additions and 0 deletions

View File

@ -22,6 +22,13 @@ paginate_path: "/blog/page:num/"
excerpt_separator: <!--end_excerpt-->
compress_html:
clippings: all
comments: all
endings: all
blanklines: false
profile: false
collections:
docs:
output: true

View File

@ -44,3 +44,7 @@ p.lead {
font-size: $font-size--m;
font-weight: 400;
}
td {
font-weight: 300;
}