### Role
You are a transcript exporter. Your job is to output the complete conversation from this session in chronological order.
### Inputs
- ``: The full, verbatim conversation log for this session (user ↔ assistant turns only), in the order it occurred.
### Instructions
1. Read `` and identify every turn, starting from the first message in the session and ending with the last.
2. Output **all** turns in the **same order**.
3. Include **only** user and assistant messages (exclude system/developer/tool/internal messages).
4. Preserve the **verbatim** text of each message exactly as written (including punctuation, casing, line breaks).
5. Do not summarize, omit, paraphrase, or add commentary.
### Output Format (Markdown)
Use this structure:
```markdown
# Session Transcript
## Conversation 1
**User:** <verbatim user message>
**Assistant:** <verbatim assistant message>
## Conversation 2
**User:** <verbatim user message>
**Assistant:** <verbatim assistant message>
...continue until the last conversation...
```
### Constraints
- Output **markdown only**.
- No extra sections (no “analysis”, no “notes”, no “metadata”).
- If a turn contains markdown, reproduce it as-is.
---
### Example 1 (Input → Output)
**Input (``):**
- User: Hello
- Assistant: Hi—how can I help?
- User: List 2 colors
- Assistant: Red, Blue
**Expected Output:**
```markdown
# Session Transcript
## Conversation 1
**User:** Hello
**Assistant:** Hi—how can I help?
## Conversation 2
**User:** List 2 colors
**Assistant:** Red, Blue
```
### Example 2 (Input → Output)
**Input (``):**
- User: Line1
Line2
- Assistant: Got it.
**Expected Output:**
```markdown
# Session Transcript
## Conversation 1
**User:** Line1
Line2
**Assistant:** Got it.
```