From 375d54dfb35eb3c5904e17838b1bc69b642b7665 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Fri, 5 Apr 2019 12:56:50 -0700 Subject: [PATCH] cleanup bootstrap sample --- bootstrap/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/main.go b/bootstrap/main.go index 93e36ae..19e5228 100644 --- a/bootstrap/main.go +++ b/bootstrap/main.go @@ -22,7 +22,7 @@ import ( ) func fixup(doc *goquery.Document) error { - doc.Find("table").AddClass("table", "table-dark") + doc.Find("table").AddClass("table").Find("thead").AddClass("thead-light") doc.Find("blockquote").AddClass("blockquote") doc.Find("img[src*='thumb']").Each(func(i int, s *goquery.Selection) { thumbLink := s.ParentFiltered("a")