2019-08-13 19:09:23 +00:00
|
|
|
# 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
|
2019-11-14 17:29:07 +00:00
|
|
|
self[:value] || document.content || default_value
|
2019-08-13 19:09:23 +00:00
|
|
|
end
|
|
|
|
|
2019-08-13 23:33:57 +00:00
|
|
|
def front_matter?
|
|
|
|
false
|
|
|
|
end
|
2019-08-13 19:09:23 +00:00
|
|
|
end
|