I am working with the Confluence REST api, and want to extract some documents. The document body is available in several formats: editor
, storage
, view
, export_view
, anonymous_export_view
,... But I have not found a description anywhere of what they are, or what each one is intended for. (This answer mentions several formats but doesn't say what they are.) In my checks, all formats have embedded HTML-style markup but with different non-standard attributes. Any pointers?
Specifically, I am looking for the best format to use for conversion to other, non-confluence formats.
Example query:
https://confuence.example.com/rest/api/content?spaceKey=doc&expand=body.editor,body.storage,body.anonymous_export_view,body.view,body.export_view&start=0&limit=50
This returns several alternative formats, and I see lots of random-seeming differences. So what's the story?