> For the complete documentation index, see [llms.txt](https://comic-git.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://comic-git.gitbook.io/documentation/advanced-editing/adding-an-rss-feed.md).

# Adding An RSS Feed

Many users prefer to read their web comics through an RSS feed. Building an RSS feed as part of publishing your comic is simple.

### Edit your comic\_info.ini file

Look for the \[RSS Feed] section in your `comic_info.ini` file. It should look something like below:

```
[RSS Feed]
Build RSS feed = False
Description = Explore a free webcomic-based static site generator delivered through GitHub!
Language = en-us
Image = your_content/images/banner.png
Image width = 100
Image height = 36
```

Set `Build RSS Feed` to `True`. Fill out all the other fields as needed:

* **Description:** A short description, no more than a few sentences. This will appear underneath the name of your comic in RSS feed readers.
* **Language:** The language your comic is written in, usually the two-letter code for your language. For example, "English" would be "en", or "United States English" for "en-US". Select from [this list of acceptable language codes](http://backend.userland.com/stories/storyReader$16).
* **Image:** The relative path to an image you want to represent your website. A banner can do, but something small around 100x100 px is best.
* **Image width:** The width of the image defined in the Image option above.
* **Image height:** The height of the image defined in the Image option above.

### Add a way for users to subscribe to your feed

The most common way is to add a link in your Links Bar to the feed.xml file, e.g. `RSS = /feed.xml`&#x20;

Another good option in place of the `RSS`  text for the link is a [RSS feed symbol](https://www.google.com/search?q=rss+feed+symbol).

### Publish your comic

And you're done! Your RSS feed file will be created the next time you update your comic, and it will be kept automatically updated alongside your comic.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://comic-git.gitbook.io/documentation/advanced-editing/adding-an-rss-feed.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
