<<
Feed::Parser::NS:Blogger
The Blogger API for updating weblogs adds a few tags that are sometimes carried over into the public feeds of these blogs.
Set on a per-tag basis.
- convertLineBreaks
- xmlns="http://www.blogger.com/atom/ns#"
- Line Break Status.
This flag,
when set to true,
means that a blog's posts will have their newlines automatically converted to <br />.
If set to false,
newlines will not be transformed.
This flag is read-only and can only be changed through the Blogger web interface for now.
You can see a blog's Line Break Status by sending a GET to it's service.feed URI and looking for it as a child of the <feed> element:
- draft
- xmlns="http://purl.org/atom-blog/ns#"
- To use drafts in Blogger,
we created a new namespace with an optional element called draft.
The only valid children of draft are true or false.
If draft is left out of a newly created post,
it is assumed to be live.
If draft is left out of an edited post,
the post's draft status will not change.
Here is the syntax:
<draft xmlns="http://purl.org/atom-blog/ns#">false</draft>
<convertLineBreaks xmlns="http://www.blogger.com/atom/ns#">
true
</convertLineBreaks>
Specified in:
http://code.blogger.com/archives/atom-docs.html#extensions
http://code.blogger.com/archives/atom-docs.html#draft
<<