2023-06-19 14:42:47 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2019-12-23 14:39:54 -08:00
|
|
|
|
2023-09-08 16:50:06 -07:00
|
|
|
package dublincore // import "miniflux.app/v2/internal/reader/dublincore"
|
|
|
|
|
2024-03-12 20:31:08 -07:00
|
|
|
type DublinCoreChannelElement struct {
|
|
|
|
DublinCoreCreator string `xml:"http://purl.org/dc/elements/1.1/ creator"`
|
2023-09-08 16:50:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type DublinCoreItemElement struct {
|
2024-02-23 17:15:22 -08:00
|
|
|
DublinCoreTitle string `xml:"http://purl.org/dc/elements/1.1/ title"`
|
2019-12-23 14:39:54 -08:00
|
|
|
DublinCoreDate string `xml:"http://purl.org/dc/elements/1.1/ date"`
|
|
|
|
DublinCoreCreator string `xml:"http://purl.org/dc/elements/1.1/ creator"`
|
|
|
|
DublinCoreContent string `xml:"http://purl.org/rss/1.0/modules/content/ encoded"`
|
|
|
|
}
|