From 7970e737f0298631243134c4b2cf0401f7d2948e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=AE=E5=87=89?= <927625802@qq.com> Date: Sat, 6 Nov 2021 17:33:00 +0800 Subject: [PATCH] :sparkles: add markdown theme setting --- bootstrap/model.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bootstrap/model.go b/bootstrap/model.go index 3ec622b0..defe5249 100644 --- a/bootstrap/model.go +++ b/bootstrap/model.go @@ -171,6 +171,12 @@ func initSettings() { Description: "when have multiple, the readme file to show", Group: model.PUBLIC, }, + { + Key: "markdown theme", + Value: "vuepress", + Description: "default | github | vuepress", + Group: model.PUBLIC, + }, } for _, v := range settings { _, err := model.GetSettingByKey(v.Key)