Links¶
Copy and paste a link. Highlight a word and press ctrl + v. It should look like this -> Example
Text Formatting¶
Bold: **bold text**
or __bold text__
Italic: *italic text*
or _italic text_
***Bold and Italic***:
bold and italic text~~Striketrough~~:
strikethrough`
Headings¶
Use #
for headings. The number of #
determines the heading level.
- # Heading 1
- ## Heading 2
- ### Heading 3
- #### Heading 4
Lists¶
Unordered List: Use -
, +
, or *
for bullet points.
Ordered List: Use numbers followed by a period.
Checkboxes¶
To create a task list, use - [ ]
for unchecked and - [x]
for checked boxes.
Code¶
Inline Code: Use backticks `
for inline code.
Code Block: Use three backticks ```
to create a code block.
function hello() { console.log("Hello World!"); }
Comments¶
Use %%
to create comments that won't be rendered in the preview mode.
%% This text is a comment and won't appear in the preview. %%