Raita logo

Export Formats Reference


How to Export

  1. Select articles in the project table using checkboxes.
  2. Click Export in the bulk action bar.
  3. Choose a format, configure options, and click Download.

For direct WordPress publishing via REST API (no file download), see Publishing to WordPress.


WordPress XML (WXR)

File type: .xml Use case: Import into WordPress via Tools → Import → WordPress

Field mapping:

WordPress fieldSource
dc:creatorRaita account username
titleArticle title
content:encodedArticle HTML body
wp:post_nameURL slug (generated from title or keyword)
wp:post_typepost (always)
wp:statusdraft, publish, or future (future if publish date is in the future)
wp:post_date / wp:post_date_gmtExport or scheduled date
category (domain: category)Configured category or niche
category (domain: post_tag)Meta keywords (when "Use meta keywords as tags" is enabled)
Meta descriptionInjected via custom meta template (configured in Export settings)
SEO keyphraseArticle topic (when "Use keyword as keyphrase" is enabled)

Format: WXR 1.2 (RSS 2.0 envelope with WordPress namespaces).


Blogger XML

File type: .xml Use case: Import into Blogger via Settings → Manage Blog → Import content

Field mapping:

Blogger fieldSource
ns0:titleArticle title
ns0:contentArticle HTML body
ns0:published / ns0:updatedExport or scheduled date (RFC 3339)
ns0:category (kind)http://schemas.google.com/blogger/2008/kind#post
ns0:category (ns)Configured category or niche
app:draftSet to yes when publish status is draft

Format: Atom feed with Blogger namespace.


Hugo / Markdown

File type: .md (one file per article, zipped) Use case: Hugo static sites

Front matter fields:

FieldValue
titleArticle title
descriptionMeta description
dateExport or scheduled date (RFC 3339, local timezone)
draftfalse when publish status is publish; true otherwise
categoriesSingle-item list with configured category or niche (omitted if empty)
tagsList of meta keywords (when "Use meta keywords as tags" is enabled)

Body: Article content converted from HTML to Markdown (GFM). Tables, images, and headings are separated by blank lines for correct rendering.

Filename: <slug>.md — slug is derived from the article title or keyword depending on export options.


CSV

File type: .csv Use case: Spreadsheet review, custom CMS import, bulk data processing

Columns (in order):

ColumnContent
slugURL slug derived from title or keyword
publish_statusPublication status (e.g. draft, publish)
dateGeneration or scheduled date (RFC 3339, local timezone)
contentArticle HTML body
titleArticle title
categoryConfigured category or niche
descriptionMeta description (empty string if none)
keywordTarget keywords as a JSON array (e.g. ["seo","content"])
tagsMeta keywords as a JSON array when "Use meta keywords as tags" is enabled; empty array otherwise

Notes:

  • The file has no header row — columns are identified by position.
  • Special characters in content are normalized: curly quotes → straight quotes, en-dash → hyphen.

HTML

File type: .html (one file per article, zipped) Use case: Standalone web pages, local review, static hosting

Default document structure (no custom template):

ElementContent
<title>Article title
<meta type="description">Meta description (when present)
<meta type="keywords">Meta keywords joined by , (when present)
<h1> inside <header>Article title
<body>Article HTML body

Custom template: If an HTML template is configured in the export dialog, Raita replaces the following placeholders:

PlaceholderReplaced with
{{title}}Article title
{{content}}Article HTML body
{{meta.description}}Meta description
{{meta.keywords}}Meta keywords joined by ,
{{meta}}Full <meta> tags for description and keywords

Filename: <slug>.html — slug is derived from the article title or keyword.