For example my basic cloze style is
.cloze {
color: #ec6c4f;
font-weight: bold;
padding-bottom: 0px;
text-decoration: underline;
}
If I make a note
Today({{c1::October 1st}}) is {{c2::National Day}}.
And when the card is asking the first cloze, it will use above styles. However, the second cloze doesn’t
Today(<cloze_style>[...]</cloze_style>) is National Day.
I’m wondering if there is a way like
.cloze_not_asked {
color: red;
font-weight: bold;
}
to achieve effect like
Today(<cloze_style>[...]</cloze_style>) is <cloze_not_asked_style>National Day</cloze_not_asked_style>.
But I didn’t find it. I’ll really appreciate it if someone could do me the favor.