Skip to content

Commit

Permalink
Workaround for incorrect Vuepress warning
Browse files Browse the repository at this point in the history
  • Loading branch information
NotTheDr01ds committed Jan 1, 2025
1 parent 0c0da1b commit bf8518e
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions make_docs.nu
Original file line number Diff line number Diff line change
Expand Up @@ -403,14 +403,18 @@ contributors: false
</script>
<table>
<tr>
<th>Command</th>
<th>Description</th>
</tr>
<tr v-for=\"command in commands\">
<td><a :href=\"$withBase\(command.path\)\">{{ command.title }}</a></td>
<td style=\"white-space: pre-wrap;\">{{ command.frontmatter.usage }}</td>
</tr>
<thead>
<tr>
<th>Command</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr v-for=\"command in commands\">
<td><a :href=\"$withBase\(command.path\)\">{{ command.title }}</a></td>
<td style=\"white-space: pre-wrap;\">{{ command.frontmatter.usage }}</td>
</tr>
</tbody>
</table>
"
| save --raw --force $doc_path
Expand Down

0 comments on commit bf8518e

Please sign in to comment.