pxt-arcade icon indicating copy to clipboard operation
pxt-arcade copied to clipboard

Render variables in the same order as in the markdown

Open momuno opened this issue 2 years ago • 0 comments

Is your feature request related to a problem? Please describe. When variables considered "auto-declared" (0, false, "", [], null) are set in the markdown, they are rendered in a different order than what the markdown shows.

Describe the solution you'd like I'd like them to be rendered in the same order I specify them in the markdown block.

Additional context

# Make a Puzzle

## Step 4

🤷 Nothing to lose 🤷

```blocks
let myAutoDeclNumber = 0
let myNumber1 = 1

let myAutoDeclBool = false
let myBool = true

image

momuno avatar Jul 08 '22 19:07 momuno