Home Explore Blog CI



nushell

commands/categories/strings.md
d03f9eb0122c1e50cd5fe761bdc34047e438fffb0afa65d200000003000002e8
---
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>

Chunks
3a47ae16 (1st chunk of `commands/categories/strings.md`)
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.