mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-05 16:28:49 +01:00
📝 闪卡支持设置是否启用标记制卡 https://github.com/siyuan-note/siyuan/issues/7794
This commit is contained in:
parent
98344bdc99
commit
7b3e358dc1
4 changed files with 13 additions and 11 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue