Home Explore Blog CI



nushell

commands/categories/experimental.md
67ec275f56bec33e9b2256f8f5464f10dac84d59ff51402a00000003000002f2
---
editLink: false
contributors: false
---

# Experimental

<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('experimental'))
          .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
2caa5cf4 (1st chunk of `commands/categories/experimental.md`)
Title: Experimental Commands
Summary
This section lists experimental Cypress commands. It displays a table with the command name and a brief description of its usage. The table is dynamically generated from pages containing command documentation categorized as 'experimental'.