Skip to content

Commit

Permalink
fix: duplicate bearer display in command docs
Browse files Browse the repository at this point in the history
  • Loading branch information
elsapet committed Nov 8, 2023
1 parent 5bf3330 commit bb61a2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/commands.njk
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ Bearer CLI offers a number of commands to use and customize the CLI to your need
</ul>

{% for item in items %}
<h2 class="inline-block text-neutral-100 bg-code p-1 rounded-md leading-none font-mono" id="{{ item.name | trim | e | replace(" ", "_")}}">bearer {{ item.name | trim | escape }}</h2>
<h2 class="inline-block text-neutral-100 bg-code p-1 rounded-md leading-none font-mono" id="{{ item.name | trim | e | replace(" ", "_")}}">{{ item.name | trim | escape }}</h2>

<p>{{item.synopsis}}</p>

<pre class="language-bash"><code class="language-bash">bearer {{item.usage | trim}}</code></pre>
<pre class="language-bash"><code class="language-bash">{{item.usage | trim}}</code></pre>

<h3 id="{{item.name | trim}}-flags">Flags</h3>
<table class="table-auto">
Expand Down

0 comments on commit bb61a2e

Please sign in to comment.