[SOLVED] Help: how to rename a non-html taxonomy?

I have a taxonomy layout /layouts/talks/taxonomy.html for HTML pages: it’s a list of talks. I have enabled custom output, calendar and have a /layouts/talks/taxonomy.ics template for ICS files. It is rendered as: /talks/talk-name/index.ics .

Is there a way to rename a slug for the custom output file? I want to name it as event.ics?

See: https://github.com/HeapSpace/heapcon2018/tree/master/layouts/talks

try this way

[outputFormats.ICS]
MediaType             = "text/calendar"
BaseName              = "event"
suffix                = "ics"
IsHTML                = false
IsPlainText           = true
1 Like

Thanx. This gave me an idea to actually modify defaults:

[outputFormats]
[outputFormats.calendar]
  BaseName = "event"