📝 闪卡支持设置是否启用标记制卡 https://github.com/siyuan-note/siyuan/issues/7794

This commit is contained in:
Liang Ding 2023-03-28 10:04:28 +08:00
parent 98344bdc99
commit 7b3e358dc1
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
4 changed files with 13 additions and 11 deletions

View file

@ -19,6 +19,7 @@ package conf
type Flashcard struct {
NewCardLimit int `json:"newCardLimit"` // 新卡上限 https://github.com/siyuan-note/siyuan/issues/7695
ReviewCardLimit int `json:"reviewCardLimit"` // 复习卡上限 https://github.com/siyuan-note/siyuan/issues/7703
Mark bool `json:"mark"` // 是否启用标记制卡 https://github.com/siyuan-note/siyuan/issues/7794
List bool `json:"list"` // 是否启用列表块制卡 https://github.com/siyuan-note/siyuan/issues/7701
SuperBlock bool `json:"superBlock"` // 是否启用超级块制卡 https://github.com/siyuan-note/siyuan/issues/7702
Deck bool `json:"deck"` // 是否启用卡包制卡 https://github.com/siyuan-note/siyuan/issues/7724
@ -28,6 +29,7 @@ func NewFlashcard() *Flashcard {
return &Flashcard{
NewCardLimit: 20,
ReviewCardLimit: 200,
Mark: true,
List: true,
SuperBlock: true,
Deck: false,