Get Article Section
get_article_sectionFetch a specific article section by index and locale. Returns HTML (round-trip safe) or Markdown (for review only).
Instructions
Retrieve the content of a single section of an article in a given locale. Use get_article_outline first to discover section indexes. Default format="html" for round-trip safety. Pass format="markdown" only for human review — the Markdown representation is lossy on some structures ( with , tables with multi- cells are kept as raw HTML to limit the damage, but do not round-trip markdown content back through update_article_section).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format. "html" (default) is round-trip safe. "markdown" is lossy on some HTML structures — use only for human review, not before update_article_section. | html |
| locale | Yes | Locale of the body (e.g., "en-us", "fr") | |
| article_id | Yes | Article ID | |
| section_index | Yes | 0-based index of the section (see get_article_outline) |