molybdenum-99/infoboxer

View on GitHub
lib/infoboxer/tree/gallery.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Infoboxer
  module Tree
    # Represents gallery of images (contents of `<gallery>` special tag).
    #
    # See [Wikipedia Tutorial](https://en.wikipedia.org/wiki/Help:Gallery_tag)
    # for explanation of attributes.
    class Gallery < Compound
    end
  end
end