We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
闪卡中的挖空能够改为一种统一的标识,而不是文字的隐化
原因在于,现有的挖空形式没有隐藏文字的长度,那么就存在偷懒的可能,通过文字长度来猜测数量,从而降低学习效率。
可以参考supermemo的方案,也即是在闪卡复习页面使用黄底红字的[...]来表示被挖空部分。 这样即避免通过文字长度猜测答案的偷懒行为,还能通过颜色来突出显示挖空的位置。
可在设置中的代码片段中加入以下代码来实现
.card__block--hidemark span[data-type~=mark]::before{background-color:yellow;color:red!important} .card__block--hidemark span[data-type~=mark]::before { content: " [...] "; color: var(--b3-theme-on-background); font-size: 16px;} .card__block--hidemark span[data-type~=mark] { font-size: 0px; }
但最好还是能够原生显示
No response
The text was updated successfully, but these errors were encountered:
💄 #10009
e2df243
Vanessa219
No branches or pull requests
闪卡中的挖空能够改为一种统一的标识,而不是文字的隐化
In what scenarios do you need this feature?
原因在于,现有的挖空形式没有隐藏文字的长度,那么就存在偷懒的可能,通过文字长度来猜测数量,从而降低学习效率。
Describe the optimal solution
可以参考supermemo的方案,也即是在闪卡复习页面使用黄底红字的[...]来表示被挖空部分。
这样即避免通过文字长度猜测答案的偷懒行为,还能通过颜色来突出显示挖空的位置。
Describe the candidate solution
可在设置中的代码片段中加入以下代码来实现
.card__block--hidemark span[data-type~=mark]::before{background-color:yellow;color:red!important}
.card__block--hidemark span[data-type~=mark]::before {
content: " [...] ";
color: var(--b3-theme-on-background);
font-size: 16px;}
.card__block--hidemark span[data-type~=mark] {
font-size: 0px;
}
但最好还是能够原生显示
Other information
No response
The text was updated successfully, but these errors were encountered: