Just testing this, and it works fine for me. Which must mean there is something outside of what you’re showing us, which is hard to tell without seeing it.
My best guess is that you have put the outputFormats definition in the middle of the TOML file. The TOML spec says that only a table (i.e. a map, or a dictionary) can follow another map. The bad thing, which I don’t think we can do much about, is that you don’t get any errors, the values are just dropped.
To test this, move [outputFormats] to the end of your config.toml.
languageCode = "en-gb"
title = "Liam Blizard's Dev Blog"
baseurl = "http://liamblizard.co.uk/"
# Define the number of posts per page
paginate = 5
footnotereturnlinkcontents = "↩"
theme = "hugo-icarus-theme"
disqusShortname = "liamblizard"
[params]
Author = "Liam Blizard"
bio = "Web Developer working primarily on the .NET platform. "
location = "London"
copyright = "Powered by [Hugo](//gohugo.io). Theme by [PPOffice](http://github.com/ppoffice)."
avatar = "css/images/Liam.jpg"
logo = "css/images/Liam.jpg"
date_format = "2006-01-02"
[params.widgets]
recent_articles = true
#categories = true
tags = true
[social]
# Add your social network accounts to the profile section on the left
# by entering your username. The links to your account will be
# created automatically.
github = "MrBliz"
instagram = "Mr_Bliz"
twitter = "LiamBlizard"
[outputFormats]
[outputFormats.RSS]
baseName = "rss"
I’m using the hugo-icarus-theme, so it may be a problem in there
I get why the link generated in a template wouldn’t be correct without changing the theme template, but surely that wouldn’t affect a url at http://liamblizard.co.uk/rss ??
Thanks for the help.
Brand new to Hugo so still figuring things out, but i’m very impressed so far!