discourse/lib/onebox/layout_support.rb
2023-01-09 12:10:19 +00:00

18 lines
247 B
Ruby

# frozen_string_literal: true
module Onebox
module LayoutSupport
def self.max_text
500
end
def layout
@layout ||= Layout.new(self.class.onebox_name, data)
end
def to_html
layout.to_html
end
end
end