mirror of
https://0xacab.org/sutty/sutty
synced 2025-02-16 15:31:47 +00:00
12 lines
181 B
Ruby
12 lines
181 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Campos en HTML
|
|
class MetadataHtml < MetadataContent
|
|
def front_matter?
|
|
true
|
|
end
|
|
|
|
def document_value
|
|
document.data[name.to_s]
|
|
end
|
|
end
|