mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
feat: mark unanswered (related) questions
This commit is contained in:
parent
de828d07a9
commit
543436fe23
3 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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])
|
||||
|
|
|
@ -302,6 +302,9 @@
|
|||
&__span-italic {
|
||||
font-style: italic;
|
||||
}
|
||||
&__span-highlight {
|
||||
color: var(--clr-focus);
|
||||
}
|
||||
|
||||
&__span-link,
|
||||
&__link {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue