-
|
Have you tried to enable AtomFeed? I did and got an exception. The code looks brittle. Every page must have a 'title:' and it must be the first if more parameters are present. Otherwise an update of first element of an empty list! This happens Wouldn't it be better to have just one |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Sorry for missing this. One page can fill more than one entry, here's an example: It does look like title needs to be the first tag for an atom feed, and that's what is doing the initial prepend while throwing an exception if you try to put other stuff in without that initial title. Doesn't seem like it's documented anywhere that title must be the first tag if you're utilizing atom feeds, and it probably should be due to how the simple parser is only line-by-line. |
Beta Was this translation helpful? Give feedback.
Sorry for missing this.
One page can fill more than one entry, here's an example:
It does look like title needs to be the first tag for an…