Shiki Magic Move â
Shiki Magic Move enables you to have a granular transition between code changes, similar to Keynote's Magic Move. You can check the playground to see how it works.
In Slidev, we bind the magic-move to the clicks system. The syntax is to wrap multiple code blocks representing each step with ````md magic-move
(mind it's 4 backticks), this will be transformed into one code block, that morphs to each step as you click.
md
````md magic-move
```js
console.log(`Step ${1}`)
```
```js
console.log(`Step ${1 + 1}`)
```
```ts
console.log(`Step ${3}` as string)
```
````
It's also possible to mix Magic Move with ⨠Line Highlighting and ⨠Line Numbers, for example:
md
````md magic-move {at:4, lines: true}
```js {*|1|2-5}
let count = 1
function add() {
count++
}
```
Non-code blocks in between as ignored, you can put some comments.
```js {*}{lines: false}
let count = 1
const add = () => count += 1
```
````