We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi:
Do we know if reveal-md will eventually support the animating between code blocks as demostrated on https://revealjs.com/auto-animate/#example%3A-animating-between-code-blocks ?
reveal-md
Have been trying to experiment with the following syntax, but not successful.
## 1st slide <!-- .slide: data-auto-animate --> <!-- .element: data-id="code-animation"--> ```js data-trim data-line-numbers let planets = [ { name: 'mars', diameter: 6779 }, ] ``` <!--end of slide 1-->
## 2nd slide <!-- .slide: data-auto-animate data-trim data-line-numbers--> <!-- .element: data-id="code-animation"--> ```js data-trim data-line-numbers let planets = [ { name: 'mars', diameter: 6779 }, { name: 'earth', diameter: 12742 }, { name: 'jupiter', diameter: 139820 } ] ``` <!--end of slide 2-->
## 3rd slide <!-- .slide: data-auto-animate data-trim data-line-numbers--> <!-- .element: data-id="code-animation"--> ```js data-trim data-line-numbers let circumferenceReducer = ( c, planet ) => { return c + planet.diameter * Math.PI; } let planets = [ { name: 'mars', diameter: 6779 }, { name: 'earth', diameter: 12742 }, { name: 'jupiter', diameter: 139820 } ] let c = planets.reduce( circumferenceReducer, 0 ) ``` <!--end of slide 3--> Any guidance would be much apprechiated. Thank you.
The text was updated successfully, but these errors were encountered:
Hi,
I'm not sure... It support the Code Highlighting and the Highlight of lines (example in the revealjs website) but i'm not sure for the Code Animation...
Sorry, something went wrong.
I've tried various ways of writing it before and it worked. Here is an example. Please do not ignore any part of the example, even blank lines.
No branches or pull requests
Hi:
Do we know if
reveal-md
will eventually support the animating between code blocks as demostrated on https://revealjs.com/auto-animate/#example%3A-animating-between-code-blocks ?Have been trying to experiment with the following syntax, but not successful.
The text was updated successfully, but these errors were encountered: