Home Explore Blog CI



nushell

commands/categories/formats.md
7c0b6cf2bda03bfaef3a71cddcef5b66c22213607e9f3e4700000003000002e8
---
editLink: false
contributors: false
---

# Formats

<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('formats'))
          .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
3717799a (1st chunk of `commands/categories/formats.md`)
Title: Formats Commands
Summary
This section provides a table listing available commands related to formats, along with their descriptions. The table includes the command name as a link to its documentation and a brief description of its usage.