@@ -9,7 +9,6 @@ import { useCurrentModule } from '../composables/useCurrentModule'
99import { useVisibleModules } from ' ../composables/useVisibleModules'
1010import { renderMarkdown } from ' ../lib/html-renderer'
1111import { isActive } from ' ../lib/route'
12- import { humanizeText } from ' ../utils/textUtils'
1312import CommandMenu from ' ./CommandMenu.vue'
1413import Logo from ' ./Logo.vue'
1514import ModulePill from ' ./ModulePill.vue'
@@ -108,7 +107,7 @@ function openAccordionInitialState(items: NimiqVitepressSidebar['items'][number]
108107 <a :href =" withBase(link!)" relative class =" sidebar-item" :data-state =" isActive(page.relativePath, link) ? 'active' : ''" reka-active:font-bold transition-all reka-active:text-blue reka-active:bg-blue-400 group :class =" { 'nq-arrow after:op-70 hocus:after:op-100': isExternalLink(link!) || isCrossModuleLink(link!) }" transition-opacity :target =" isExternalLink(link!) ? '_blank' : undefined" >
109108 <div v-if =" isActive(page.relativePath, link)" aria-hidden absolute inset-y-0 bg-blue rounded-full w-2 z-2 transition-colors :class =" isInAccordion ? 'left-12' : 'left-0'" />
110109 <div v-if =" icon" :class =" icon" f-size-xs text =" neutral reka-active:blue" grayscale class =" reka-active:var:un-grayscale:0" op =" 70 group-hocus:100 reka-active:100" transition-opacity mr-8 shrink-0 />
111- <span flex-1 v-html =" renderMarkdown(humanizeText( text) )" />
110+ <span flex-1 v-html =" renderMarkdown(text)" />
112111 </a >
113112 </DefineSidebarItem >
114113 <ScrollAreaRoot relative of-hidden bg-neutral-100 var:scrollbar-size:10px as =" nav" flex-1 f-px =" sm md:xs" v-bind =" $attrs" >
@@ -124,7 +123,7 @@ function openAccordionInitialState(items: NimiqVitepressSidebar['items'][number]
124123 <CollapsibleTrigger class =" sidebar-item" group pr-12 pl-8 bg-transparent >
125124 <div v-if =" subitem.icon" :class =" subitem.icon" f-text-sm text-neutral op =" 70 group-hocus:100" mr-8 />
126125 <div :class =" subitem.text" op =" 80 group-hocus:100" transition-opacity />
127- <span flex-1 text-left v-html =" renderMarkdown(humanizeText( subitem.text) )" />
126+ <span flex-1 text-left v-html =" renderMarkdown(subitem.text)" />
128127 <div
129128 i-nimiq:chevron-down aria-hidden text =" 9 neutral-700 group-hocus:neutral-800"
130129 transition =" [color,transform]" :class =" { 'rotate--90': !open }"
0 commit comments