The poptag directive pops a tag from Beancount's tag stack.
See The Tag Stack.
Beancount syntax
poptag #tripGeneral form: poptag #Tag
Elixir struct
%Beancount.Directives.PopTag{
tag: "trip"
}Or use Beancount.pop_tag/1:
Beancount.pop_tag("trip")Fields
tag- tag name without the#prefix (must match a priorpushtag).
Summary
Types
@type t() :: %Beancount.Directives.PopTag{tag: String.t()}