sitemapo 0.2.0

The implementation of the Sitemap.xml (or URL inclusion) protocol with the support of txt & xml formats, and video, image, news extensions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod frequency;
mod priority;

pub use frequency::*;
pub use priority::*;

pub(crate) const LOCATION: &str = "loc";
pub(crate) const LAST_MODIFIED: &str = "lastmod";
pub(crate) const CHANGE_FREQUENCY: &str = "changefreq";
pub(crate) const PRIORITY: &str = "priority";

pub(crate) const URL_SET: &str = "urlset";
pub(crate) const URL: &str = "url";

pub(crate) const SITEMAP_INDEX: &str = "sitemapindex";
pub(crate) const SITEMAP: &str = "sitemap";