Markdown formatting

This post is also available in: 日本語 Русский Français Español Deutsch Српски Dansk Português Български 简体中文

Markdown is a simple markup language used to create rich text (e.g. HTML) with a plain text editor. It lets you add basic formatting to your text, using symbols known and accessible on all keyboards. Font size, colour, and other, more advanced options are not available with Markdown.

In Vivaldi you can use Markdown to format your Notes or when posting on the Vivaldi Forum.


Using Markdown

To use Markdown, first get to know the syntax on CommonMark, then give it try in Notes or on the Vivaldi Forum.

Some examples of Markdown:

SyntaxResult
*Italic*Italic
**Bold**Bold
~~Strikethrough~~Strikethrough
[Link](https://vivaldi.com/)Link
Column 1 | Column 2 | Column 3 |
:——- | :——: | ——: |
Left | Centred | Right |
Column 1 Column 2 Column 3
Left Centred Right
# Heading 1

 

## Heading 2

### Heading 3

Heading 1

Heading 2

Heading 3

Image

 

[Vivaldi logo](https://vivaldi.com/wp-content/themes/vivaldicom-theme/img/press/icons/viv_icon.png)

Vivaldi logo
Unordered list

 

* Item 1
* Item 2
* Item 3

Ordered list

1. Item 1
2. Item 2
3. Item 3

Unordered list

 

  • Item 1
  • Item 2
  • Item 3

Ordered list

  1. Item 1
  2. Item 2
  3. Item 3
`Inline code` with single backticksInline code with single backticks
Code block
(use three backticks without spaces)

 

` ` `
<
!DOCTYPE html>

<html>
<body><h1>My First Heading</h1>
<p>My first paragraph.</p></body>
</html>
` ` `

<!DOCTYPE html>
<html>
<body><h1>My First Heading</h1>
<p>My first paragraph.</p></body>
</html>
Block quote

 

> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer eget porta sapien, eget pellentesque sapien. Duis in aliquam elit. Mauris lacinia magna quis nibh commodo, sed elementum quam elementum.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer eget porta sapien, eget pellentesque sapien. Duis in aliquam elit. Mauris lacinia magna quis nibh commodo, sed elementum quam elementum.

Horizontal line

 

– – –


 

Was this page helpful?