feat: mark unanswered (related) questions

This commit is contained in:
thecashewtrader 2023-01-30 22:38:41 +05:30
parent de828d07a9
commit 543436fe23
3 changed files with 7 additions and 1 deletions

View file

@ -27,6 +27,9 @@ mixin spansChecker(spans)
//- handle italic text
- else if (!!span.modifiers.italic)
em.text__span-italic= span.text
//- handle highlight text
- else if (span.modifiers.highlight)
span.text__span-highlight= span.text
//- regular plain text
- else
span.text__span-plain= span.text

View file

@ -40,4 +40,4 @@ block content
ul.related__questions
each question in data.relatedQuestions
li.related__question-item: a.related__question-link.answers__link(href=question.url)
+spansChecker(question.text[0].spans)
+spansChecker([{text: question.url.slice(0, 12) == '/unanswered/' ? "[Unanswered] " : " ", modifiers: {highlight: true}}, ...question.text[0].spans])

View file

@ -302,6 +302,9 @@
&__span-italic {
font-style: italic;
}
&__span-highlight {
color: var(--clr-focus);
}
&__span-link,
&__link {