class BibTeX::Comment
Represents a @comment object.
Attributes
Public Class Methods
Source
# File lib/bibtex/elements.rb, line 359 def initialize(content = '') @content = content end
Public Instance Methods
Source
# File lib/bibtex/elements.rb, line 363 def to_s(_options = {}) "@comment{ #{@content} }\n" end