mirror of
https://0xacab.org/sutty/sutty
synced 2025-02-17 00:31:46 +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
|