mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:16:22 +00:00
17 lines
312 B
Ruby
17 lines
312 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Se encarga del contenido del artículo y quizás otros campos que
|
|
# requieran texto largo.
|
|
class MetadataContent < MetadataTemplate
|
|
def default_value
|
|
''
|
|
end
|
|
|
|
def value
|
|
self[:value] || document.content || default_value
|
|
end
|
|
|
|
def front_matter?
|
|
false
|
|
end
|
|
end
|