2021-01-10 15:51:08 -05:00
|
|
|
# Toolbar
|
|
|
|
|
|
|
|
![whole toolbar](../images/interface/toolbar/whole.png)
|
|
|
|
|
|
|
|
The Toolbar is found above the editor and is split into five sections:
|
|
|
|
|
|
|
|
1. Emphasis
|
|
|
|
2. Header & Blocks
|
|
|
|
3. Links & Images
|
|
|
|
4. Larger Blocks & Emojis
|
|
|
|
5. Settings
|
|
|
|
|
|
|
|
## Emphasis
|
|
|
|
|
|
|
|
![Emphasis toolbar](../images/interface/toolbar/emphasis.png)
|
|
|
|
|
2023-07-05 20:45:32 -04:00
|
|
|
These buttons are able to either surround selected text with the necessary symbols to emphasize it
|
|
|
|
or insert the symbols without any content between them to be filled out by you. The icons on
|
|
|
|
the buttons should be rather easy to identify.
|
2021-01-10 15:51:08 -05:00
|
|
|
Nonetheless, here is their functionality:
|
|
|
|
|
|
|
|
1. bold e.g `**text**`
|
|
|
|
2. italic e.g `*text*`
|
|
|
|
3. underscore e.g `_text_`
|
|
|
|
4. strikethrough e.g `~~text~~`
|
|
|
|
5. subscript e.g `~text~`
|
|
|
|
6. superscript e.g `^text^`
|
|
|
|
|
|
|
|
## Header & Blocks
|
|
|
|
|
|
|
|
![Header & Blocks toolbar](../images/interface/toolbar/blocks.png)
|
|
|
|
|
|
|
|
These buttons all work a bit different so, we will describe each on separately:
|
|
|
|
|
|
|
|
1. **Heading**
|
2023-07-05 20:45:32 -04:00
|
|
|
Adds `#` in front of the line. If the line is already starting with a `#` adds just `#`.
|
2021-01-10 15:51:08 -05:00
|
|
|
2. **Code Blocks**
|
2023-07-05 20:45:32 -04:00
|
|
|
Adds ` ``` ` around the selected text or if no text is selected just adds two lines with ` ``` `
|
|
|
|
and an empty line between them.
|
2021-01-10 15:51:08 -05:00
|
|
|
3. **Quote**
|
2023-07-05 20:45:32 -04:00
|
|
|
Adds `>` in front of the line.
|
2021-01-10 15:51:08 -05:00
|
|
|
4. **Unordered List**
|
2023-07-05 20:45:32 -04:00
|
|
|
Ads `-` in front of the line.
|
2021-01-10 15:51:08 -05:00
|
|
|
5. **Ordered List**
|
2023-07-05 20:45:32 -04:00
|
|
|
Adds `1.` in front of the line.
|
2021-01-10 15:51:08 -05:00
|
|
|
6. **ToDo List**
|
2023-07-05 20:45:32 -04:00
|
|
|
Adds `- [ ]` in front of the line.
|
2021-01-10 15:51:08 -05:00
|
|
|
|
|
|
|
## Links & Images
|
|
|
|
|
|
|
|
![Links & Images toolbar](../images/interface/toolbar/links.png)
|
|
|
|
|
|
|
|
These buttons add the corresponding syntax at the current cursor position.
|
2023-07-05 20:45:32 -04:00
|
|
|
If some text is selected it will either put that as the link, if it thinks that the selected text
|
|
|
|
is a link, or as the alt text.
|
2021-01-10 15:51:08 -05:00
|
|
|
|
|
|
|
1. **Link**
|
|
|
|
Adds the link template `[](https://)` (For more information
|
|
|
|
see [the markdown link documentation](https://spec.commonmark.org/0.29/#links))
|
|
|
|
2. **Image**
|
|
|
|
Adds the image placeholder `![](https://)` (For more information
|
|
|
|
see [the markdown image documentation](https://spec.commonmark.org/0.29/#images))
|
|
|
|
3. **Image Upload**
|
|
|
|
Asks the user to upload an image from their computer and then inserts it in the note.
|
|
|
|
|
|
|
|
## Larger Blocks & Emojis
|
|
|
|
|
|
|
|
![larger blocks & emojis toolbar](../images/interface/toolbar/large_blocks.png)
|
|
|
|
|
|
|
|
1. **Table**
|
2023-07-05 20:45:32 -04:00
|
|
|
This button opens an overlay, which lets you choose the size of your table up to 10 columns
|
|
|
|
and 8 rows. By clicking on any of the squares a table with the corresponding size will be added
|
|
|
|
to the note at the position of your cursor.
|
2021-01-10 15:51:08 -05:00
|
|
|
![Table overlay](../images/interface/toolbar/table_overlay.png)
|
|
|
|
A larger table can be created by clicking the 'Custom Size' button.
|
|
|
|
![Table modal](../images/interface/toolbar/table_modal.png)
|
|
|
|
In the modal you can specify the exact dimension of your table.
|
|
|
|
2. **Horizontal Line**
|
|
|
|
This button adds `---` at the current position of your cursor in the note.
|
|
|
|
3. **Collapsable Block**
|
|
|
|
This button adds a template for a Collapsable Block like this:
|
|
|
|
|
2023-07-05 20:45:32 -04:00
|
|
|
```markdown
|
|
|
|
:::spoiler Toggle label
|
|
|
|
Toggled content
|
|
|
|
:::
|
|
|
|
```
|
2021-01-10 15:51:08 -05:00
|
|
|
|
|
|
|
4. **Comment**
|
2023-07-05 20:45:32 -04:00
|
|
|
This button adds `> []` at the beginning of the line. You can either specify a name
|
|
|
|
for your comment by inserting `name=$YourName`, a time by inserting `time=$time`
|
|
|
|
or a color by inserting `color=#FFFFFF` in the `[]`.
|
2021-01-10 15:51:08 -05:00
|
|
|
Please note that you can only specify one of those per `[]`, but you can use multiple `[]`.
|
|
|
|
5. **Emoji Picker**
|
2023-02-05 16:05:02 -05:00
|
|
|
This button opens the emoji picker, where you can choose an emoji to insert into your note.
|
2021-01-10 15:51:08 -05:00
|
|
|
![Emoji Picker](../images/interface/toolbar/emoji.png)
|
|
|
|
|
|
|
|
## Settings
|
|
|
|
|
|
|
|
ToDo
|