<table class=“arguments”>

<thead>
  <tr>
    <th>Argument</th>
    <th>Type</th>
    <th>Description</th>
  </tr>
</thead>
<tbody>
<% arguments.each do |argument| %>
<tr>
  <td><code class="anchored"><%= argument[:name] %></code></td>
  <td>
    <code><a href="<%= base_url %>/<%= argument[:type][:path]%>"><%= argument[:type][:info] %></a></code>
  </td>
  <td>
    <%= markdownify.(argument[:description]) %>
    <% unless (default_value = argument[:default_value]).nil? %>
      <p>The default value is <code><%= argument[:default_value] %></code>.</p>
    <% end %>
  </td>
</tr>
<% end %>
</tbody>

</table>