summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--makefile2
-rw-r--r--plugins/meta.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index bc8c5de..6a79d2c 100644
--- a/makefile
+++ b/makefile
@@ -1,6 +1,6 @@
IMAGES = $(wildcard img/*.png)
COMPRESSED_IMAGES = $(foreach img, ${IMAGES}, site/${img})
-HIGHLIGHT_THEME = github
+HIGHLIGHT_THEME = googlecode
.PHONY: default
default: build
diff --git a/plugins/meta.lua b/plugins/meta.lua
index 23013ca..d16f6b7 100644
--- a/plugins/meta.lua
+++ b/plugins/meta.lua
@@ -3,7 +3,7 @@ description = HTML.select_one(page, "#meta-tags .description")
if description then
description_contents = HTML.strip_tags(description)
head = HTML.select_one(page, "head")
- HTML.append_child(head, HTML.parse('<meta type="description" content="' .. description_contents .. '">'))
+ HTML.append_child(head, HTML.parse('<meta name="description" content="' .. description_contents .. '">'))
else
Log.warning("Missing description in " .. page_file)
end