repubmark/lib/repubmark/elems/separator.rb

18 lines
266 B
Ruby

# frozen_string_literal: true
module Repubmark
module Elems
class Separator < Base
parents :Canvas
#################
# Basic methods #
#################
def to_html = "<hr/>\n"
def to_gemtext = "---\n"
end
end
end