Leaving flashcard view messes up the flashcard question

Description of the bug
You can see towards the end of the gif, that even though the card has a dash split with ---, when you check out the card preview and then navigate back to the flashcard view, the card title is instead used as the question, instead of the upper card section (above the dash split)

Device, App & Version
Mac M2, v 3.2.0

Screenshots / Screen Recording
Screen Recording 2025-08-11 at 10.17.16 AM

Hi @fuzzy.beach,

Do you have a blank line above and below the horizontal rule, as per the Markdown spec? If you don’t then it won’t be treated like a horizontal rule, so the flashcard will be together rather than separated – I’ve made a note to clarify this in the help articles in the future.

The flashcard view works for me even without the blank lines above and below the ---

Hey @tobias,

Yes, I do have that spacing. As you can see in the gif, the flashcard view starts off as expected, but it is after going to “open in preview” and then navigating back that it uses the title instead of the body it used prior.

Ah ok interesting, thanks for the follow up. Can you post the raw markdown of that card here so I can test and debug on our end? :slight_smile:

Sure thing, see below

## Description
You are climbing a staircase. It takes `n` steps to reach the top. Each time you can either climb 1 or 2 steps. 
- In how many distinct ways can you climb to the top?

### **Example 1:**
- Input: n = 2
- Output: 2
- Explanation: There are two ways to climb to the top.
  1. 1 step + 1 step
  2. 2 steps

### **Example 2:**
- Input: n = 3
- Output: 3
- Explanation: There are three ways to climb to the top.
  1. 1 step + 1 step + 1 step
  2. 1 step + 2 steps
  3. 2 steps + 1 step

---

- [](^630fdfc5-0c6f-4a4d-xxxx-xxx) 
- [](^1bc8537a-7560-4134-xxxx-xxx) 
- [](^f52fca39-6ed7-4a75-xxxx-xxx) 

Awesome thanks for that @fuzzy.beach! Was able to replicate now, we’ll look into why this is happening and fix it in a future update

1 Like