# frozen_string_literal: true # Standard HTML elements accept content and always have a closing tag. module Phlex::HTML::StandardElements extend Phlex::Elements # @!method a(**attributes, &content) # Outputs an `` tag. # @return [nil] # @yieldparam component [self] # @see https://developer.mozilla.org/docs/Web/HTML/Element/a register_element :a, tag: "a" # @!method abbr(**attributes, &content) # Outputs an `` tag. # @return [nil] # @yieldparam component [self] # @see https://developer.mozilla.org/docs/Web/HTML/Element/abbr register_element :abbr, tag: "abbr" # @!method address(**attributes, &content) # Outputs an `
` tag. # @return [nil] # @yieldparam component [self] # @see https://developer.mozilla.org/docs/Web/HTML/Element/address register_element :address, tag: "address" # @!method article(**attributes, &content) # Outputs an `
` tag. # @return [nil] # @yieldparam component [self] # @see https://developer.mozilla.org/docs/Web/HTML/Element/article register_element :article, tag: "article" # @!method aside(**attributes, &content) # Outputs an `