-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers
Description
Annotations like 要素関数 should be put in the same line of the functions' names.
The flex class is missing in the <h3> in GroupTemplate.
Comparision
Those in GroupTemplate
typst-docs-web/src/components/templates/GroupTemplate.tsx
Lines 39 to 45 in 12e7619
| <h3 id={`functions-${method.name}`} class="method-head"> | |
| <code class="text-base font-medium">{method.name}</code> | |
| <div class="flex flex-wrap items-center gap-2 text-sm"> | |
| {method.element && <Tooltip kind="element" />} | |
| {method.contextual && <Tooltip kind="contextual" />} | |
| </div> | |
| </h3> |
Those in FuncTemplate
typst-docs-web/src/components/templates/FuncTemplate.tsx
Lines 120 to 136 in 12e7619
| <h3 id={methodId} class="method-head mb-3 flex items-center gap-2"> | |
| <code | |
| class="text-base font-medium" | |
| style={ | |
| method.deprecation | |
| ? { textDecoration: "line-through" } | |
| : undefined | |
| } | |
| > | |
| {method.name} | |
| </code> | |
| <small class="flex items-center"> | |
| {method.element && <Tooltip kind="element" />} | |
| {method.contextual && <Tooltip kind="contextual" />} | |
| </small> | |
| </h3> |
3w36zj6
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers