Markdown cheat sheet
Rubii.ai supports html and markdown. Here are the common markdown syntax.
Font/effects
Syntax
example
Italics
* *
We're no strangers to love
Bold
** **
You know the rules and so do I
Code
` `
A full commitment's what I'm thinkin' of
Strikethrough
~~ ~~
You wouldn't get this from any other guy
code block
``` ```
quote
>
Never gonna give you up
unordered list
-
Never gonna let you down
Horizontal rule
*** or ___ or ---
Common html practices you can use when creating moments:
Collapse/Accordion Menu
<plot>
<details>
<summary>This is a collapse</summary>
Here are the content that are hidden when the collapse is being folded.
You can write a lot of stuff in here.
</details>
</plot>
Audio Playback
<audio controls autoplay><source src="YOUR_AUDIO_LINK" type="audio/mpeg"></audio>
Audio Playback (loop)
<audio controls autoplay loop><source src="YOUR_AUDIO_LINK" type="audio/mpeg"></audio>
Display An Image

Last updated