class Turbo::Streams::TagBuilder

def append(target, content = nil, **rendering, &block)

<% end %>
Append this to .clearances

<%= turbo_stream.append "clearances" do %>
<%= turbo_stream.append "clearances", partial: "clearances/unique_clearance", locals: { clearance: clearance } %>
<%= turbo_stream.append "clearances", clearance %>
<%= turbo_stream.append "clearances", "
Append this to .clearances
" %>

or the rendering of the content as a record. Examples:
rendering result determined by the rendering keyword arguments, the content in the block,
Append to the target in the dom identified with target either the content passed in or a
def append(target, content = nil, **rendering, &block)
  action :append, target, content, **rendering, &block
end