<% connections.each do |connection| %>

<div class=“field-entry <%= classes %>”>

<span id="<%= slugify.(connection[:name]) %>" class="field-name connection-name anchored"><%= connection[:name] %> (<code><a href="<%= base_url %>/<%= connection[:type][:path] %>"><%= connection[:type][:info] %></a></code>)</span>

<div class="description-wrapper">
  <%= include.('deprecations.html', item: connection) %>

  <%= include.('notices.html', notices: connection[:notices]) %>

  <%= markdownify.(connection[:description]) %>

  <% unless connection[:arguments].empty? %>
    <%= include.('arguments.html', arguments: connection[:arguments]) %>
  <% end %>
</div>

</div>

<% end %>