Skip to content

Commit bf8518e

Browse files
committed
Workaround for incorrect Vuepress warning
1 parent 0c0da1b commit bf8518e

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

make_docs.nu

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -403,14 +403,18 @@ contributors: false
403403
</script>
404404
405405
<table>
406-
<tr>
407-
<th>Command</th>
408-
<th>Description</th>
409-
</tr>
410-
<tr v-for=\"command in commands\">
411-
<td><a :href=\"$withBase\(command.path\)\">{{ command.title }}</a></td>
412-
<td style=\"white-space: pre-wrap;\">{{ command.frontmatter.usage }}</td>
413-
</tr>
406+
<thead>
407+
<tr>
408+
<th>Command</th>
409+
<th>Description</th>
410+
</tr>
411+
</thead>
412+
<tbody>
413+
<tr v-for=\"command in commands\">
414+
<td><a :href=\"$withBase\(command.path\)\">{{ command.title }}</a></td>
415+
<td style=\"white-space: pre-wrap;\">{{ command.frontmatter.usage }}</td>
416+
</tr>
417+
</tbody>
414418
</table>
415419
"
416420
| save --raw --force $doc_path

0 commit comments

Comments
 (0)