Home Explore Blog CI



nushell

1st chunk of `commands/categories/strings.md`
3a47ae16880442c1bc99fdab52884f2a18f0dd38fd52466b00000001000002e8
---
editLink: false
contributors: false
---

# Strings

<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('strings'))
          .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: String Commands
Summary
This section lists available string commands with their descriptions. The commands are dynamically generated from pages under the '/commands/docs/' path that are categorized as 'strings'. A table displays the command name as a link and its usage description.