diff --git a/lib/phlex/html/standard_elements.rb b/lib/phlex/html/standard_elements.rb index 43efbb1a..1a445527 100644 --- a/lib/phlex/html/standard_elements.rb +++ b/lib/phlex/html/standard_elements.rb @@ -4,721 +4,721 @@ module Phlex::HTML::StandardElements extend Phlex::SGML::Elements - # @!method a(**attributes, &content) + # @!method a(id: nil, class: nil, href: nil, target: nil, **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) + # @!method abbr(id: nil, class: nil, **attributes, &content) # Outputs an `` tag. # @return [nil] # @yieldparam component [self] # @see https://developer.mozilla.org/docs/Web/HTML/Element/abbr register_element :abbr - # @!method address(**attributes, &content) + # @!method address(id: nil, class: nil, **attributes, &content) # Outputs an `
` tag. # @return [nil] # @yieldparam component [self] # @see https://developer.mozilla.org/docs/Web/HTML/Element/address register_element :address - # @!method article(**attributes, &content) + # @!method article(id: nil, class: nil, **attributes, &content) # Outputs an `
` tag. # @return [nil] # @yieldparam component [self] # @see https://developer.mozilla.org/docs/Web/HTML/Element/article register_element :article - # @!method aside(**attributes, &content) + # @!method aside(id: nil, class: nil, **attributes, &content) # Outputs an `