dublincore.go 743 B

1234567891011121314151617
  1. // Copyright 2019 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package rdf // import "miniflux.app/reader/rdf"
  5. // DublinCoreFeedElement represents Dublin Core feed XML elements.
  6. type DublinCoreFeedElement struct {
  7. DublinCoreCreator string `xml:"http://purl.org/dc/elements/1.1/ channel>creator"`
  8. }
  9. // DublinCoreEntryElement represents Dublin Core entry XML elements.
  10. type DublinCoreEntryElement struct {
  11. DublinCoreDate string `xml:"http://purl.org/dc/elements/1.1/ date"`
  12. DublinCoreCreator string `xml:"http://purl.org/dc/elements/1.1/ creator"`
  13. DublinCoreContent string `xml:"http://purl.org/rss/1.0/modules/content/ encoded"`
  14. }