How can I change the RSS URL?
I’ve named my section “post”, so the RSS URL generated by Hugo is /post/index.xml. I want it to be /feed/index.xml. Is this possible? I tried the naive approach of adding a content/feed/index.xml file...
View ArticleHow can I change the RSS URL?
You can’t. Indexes are always in the root of the content that they index. (index.html, index.xml) Read full topic
View ArticleHow can I change the RSS URL?
Bummer. I guess I’ll just use a post-build script to move the file where I want it. I don’t want RSS feeds generated for my tags either so I can have a script delete those as well. It’d be nice to...
View ArticleHow can I change the RSS URL?
Is there any way to do this yet? By default Hugo generates RSS at “http://baseurl.com/index.xml”, but when migrating TO Hugo, it’d be nice to avoid having to have everyone re-subscribe when the old...
View ArticleHow can I change the RSS URL?
codydh: it’d be nice to avoid having to have everyone re-subscribe when the old URL is, for example, “http://baseurl.com/feed.xml”. What you want is possible (which is a different requirement than the...
View ArticleHow can I change the RSS URL?
Sorry, it looked like the same answer I was looking for, but the Output Formats documentation is very confusing, as it’s blended with Media Types and has no actual usable examples. Are there any such...
View ArticleHow can I change the RSS URL?
Media types and output formats are very much connected. Documentation will eventually improve, examples will come – for now I can only hint that you need to create a RSS output format definition with...
View ArticleHow can I change the RSS URL?
@codydh I have been toying around with custom outputs and figured out a way to create a feed.xml for the homepage. I’ll delimit the steps here—I need to improve the documentation as well—but this...
View ArticleHow can I change the RSS URL?
rdwatters: I’m looking to @bep to confirm if I’m on the right track since this is what I’ve figure out for potential improvements to the docs in this area. No, that isn’t how I would do it. Remove all...
View ArticleHow can I change the RSS URL?
Is my issue that I treated RSS like a fully custom output rather than one of Hugo’s built-in media types? So, for example, if @codydh wanted to make codydhsite.com/mycrazyfile.onetwothree, that would...
View ArticleHow can I change the RSS URL?
The question was “How can I change the RSS URL?” A simple question should not need a two page manual. Read full topic
View ArticleHow can I change the RSS URL?
bep: A simple question should not need a two page manual. A simple question should also have a related answer. Here is my question, again: rdwatters: Is my issue that I treated RSS like a fully custom...
View ArticleHow can I change the RSS URL?
Your answer worked – and is of course relevant when you want to create a custom feed (say you want both Atom and RSS … or whatever); but for this particular question it felt a little too much. Read...
View ArticleHow can I change the RSS URL?
Thank you for your feedback @bep. I’m getting a better idea of usage now. Read full topic
View ArticleHow can I change the RSS URL?
Ok, I apologize if I’ve missed something here. What I’ve done is added the following to my site’s config.toml: [outputFormats] [outputFormats.RSS] mediatype = "application/rss" baseName = "feed" I...
View ArticleHow can I change the RSS URL?
codydh: Am I missing something here? Yea, I posted it without testing it. Seems like that to redefine the RSS, it must also be in a outputs list, i.e. [outputs] home = [ "RSS"] It seems like the...
View ArticleHow can I change the RSS URL?
If I only include in my config.toml the following chunks: [outputs] home = [ "RSS"] [outputFormats] [outputFormats.RSS] mediatype = "application/rss" baseName = "feed" I wind up with no /index.html,...
View ArticleHow can I change the RSS URL?
The RSSLink is unfortunate (and I make a note of that, you can maybe work around that by setting the RSSUri), but I would recommend having a look at the OutputFormats and AlternativeOutputFormats when...
View ArticleHow can I change the RSS URL?
I am trying to change the url to my RSS feed to be: /news.rss I’m using the following configuration: outputs: home: ["HTML","RSS"] mediaTypes: "application/rss": suffix: "rss" outputFormats: RSS:...
View ArticleHow can I change the RSS URL?
Thanks, but no dice - this is ignored if I have that configuration (above) set. Read full topic
View ArticleHow can I change the RSS URL?
@paulwalk What if you add disableRSS: true or disableRSS = true in your config.yml or config.toml, respectively? Read full topic
View ArticleHow can I change the RSS URL?
I just tried setting disableRSS: true to my config.yaml file. With this set, when I go to the RSS URL I get a 404. I imagine this is expected behaviour? Read full topic
View ArticleHow can I change the RSS URL?
For those using config.yml, here’s what I added to the file. outputFormats: RSS: mediatype: "application/rss" baseName: "feed" Worked for me using Hugo 0.80.0. The RSS feed was renamed to feed.xml...
View Article