Adjust Sheet Syntax
Effie's markup-based editor allows you to add syntax to your text easily.
Type / to use the Markup Insight panel to add the syntaxes. Or you can follow the instructions below to add them yourself.
Add a heading
Type # and a space to add a first level heading.
Type ## and a space to add a second level heading. The number of hashes corresponds to the heading's hierarchical level. And you can go as far as six levels of headings.
Format your text
You can emphasize a word or a phrase with an asterisk; make it strong with double asterisks; mark with two colons; delete with two tildes; and with two pluses.
Type > and a space at the beginning of a line to add a block quote.
Type three minuses and hit Enter to insert a page divider.
Insert codes
Type grave accent (the key to the left of the number 1) to create a code, e.g., hello_world.h
Type two grave accents and a space to create a code block, e.g.,
#include <stdio.h>
int main() {
printf("Hello Creator!");
return 0;
}
Escape character
Add before the text if you don't want to trigger the syntax while using symbols like * _.