Neon-Vision-Editor/samples/markdown-fixtures/claude-structured-output-1.md

959 B

Claude Export Fixture 1

Overview

This fixture mixes prose, lists, code fences, inline code, table rows, and emphasis markers like snake_case and token_name.

  • Step 1: Parse data from input.json
  • Step 2: Validate using strict mode
  • Step 3: Emit report for 2026-03-08

Nested Structure

Note: This section intentionally includes repeated symbols and underscore-heavy text.

  1. Item one with inline_code() and italic text.
  2. Item two with foo_bar_baz and bold text.
  3. Item three with link text.
struct ReportRow {
    let id: String
    let score: Double
}

func render(rows: [ReportRow]) -> String {
    rows.map { "\($0.id): \($0.score)" }.joined(separator: "\n")
}
{
  "section": "analysis",
  "items": ["alpha_beta", "gamma_delta"],
  "ok": true
}
key value
user_id abcd_1234
run_id run_2026_03_08

End of fixture.