From 7b2429c24405e40f679d29adf6782080dd727da7 Mon Sep 17 00:00:00 2001 From: Jeff Ward Date: Mon, 9 Jul 2018 13:39:53 -0400 Subject: [PATCH] Fix error identified by W3C CSS validation service The validation tool can be found here: https://jigsaw.w3.org/css-validator Errors that were identified were the following: 1 .markdown-body li break-all is not a overflow-wrap value : break-all 1 .markdown-body pre code Value Error : max-width Too many values or values are not recognized : auto --- github-markdown.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/github-markdown.css b/github-markdown.css index c5f9777..cbfe653 100644 --- a/github-markdown.css +++ b/github-markdown.css @@ -532,7 +532,7 @@ } .markdown-body li { - word-wrap: break-all; + word-wrap: break-word; } .markdown-body li>p { @@ -642,7 +642,6 @@ .markdown-body pre code { display: inline; - max-width: auto; padding: 0; margin: 0; overflow: visible;