You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
746 B
18 lines
746 B
<if(state.text != null && state.text != "")>
|
|
<div class=["chapter-meta", input.kind, state.color, input.weak ? "weak" : null] title=state.tooltip>
|
|
<a if(state.href != null) href=state.href>${state.text}</a>
|
|
<span else class="tooltip">
|
|
<span>${state.text}</span>
|
|
|
|
<div if(input.character != null) class="tooltip-content color-highlight-dark color-primary">
|
|
<h1>${input.character.name}</h1>
|
|
<h2>${input.character.author}</h2>
|
|
<markdown source=input.character.description />
|
|
</div>
|
|
<div else-if(input.ukAuthor != null) class="tooltip-content color-highlight-dark color-primary">
|
|
<h1>(Unknown Character)</h1>
|
|
<h2>${input.ukAuthor}</h2>
|
|
</div>
|
|
</span>
|
|
</div>
|
|
</if>
|