Home Explore Blog CI



nushell

1st chunk of `commands/categories/removed.md`
9363a2675752c5942b004bcabf1578a888a5e898dabc164900000001000002e8
---
editLink: false
contributors: false
---

# Removed

<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('removed'))
          .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>

Title: Removed Commands Documentation
Summary
This section of the documentation lists commands that have been removed. It displays a table with the command name and its description. The data is dynamically generated from pages that include '/commands/docs/' in their path and have 'removed' in their frontmatter categories, then sorted alphabetically.