Home Explore Blog CI



nushell

commands/categories/conversions.md
b0dcd637d587fe54a2f14e17627e3b50105fb015e5ff460300000003000002f0
---
editLink: false
contributors: false
---

# Conversions

<script>
  import pages from '@temp/pages'
  export default {
    computed: {
      commands() {
        return pages
          .filter(p => p.path.includes('/commands/docs/'))
          .filter(p => p.frontmatter.categories.includes('conversions'))
          .sort((a,b) => (a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0));
      }
    }
  }
</script>

<table>
  <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>

Chunks
9a931b0a (1st chunk of `commands/categories/conversions.md`)
Title: untitled
Summary
--- editLink: false contributors: false --- # Conversions <script> import pages from '@temp/pages' export default { computed: { commands() { return pages .filter(p => p.path.includes('/commands/docs/')) .filter(p => p.frontmatter.categories.includes('conversions')) .sort((a,b) => (a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0)); } } } </script> <table> <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>