A Link represents a hypertext link to another object from an Atom feed. Examples include the link with rel=self to the canonical URL of the feed.
[Source]
# File lib/syndication/atom.rb, line 204 def initialize(parent, tag, attrs = nil) @tag = tag @parent = parent if attrs attrs.each_pair {|key, value| self.store(key, value) } end end
[Validate]