docs(user): document split functionality on mobile

This commit is contained in:
Elian Doran
2025-12-02 09:42:38 +02:00
parent 4b7d243406
commit a8ec323ea8
11 changed files with 340 additions and 301 deletions

View File

@@ -21,4 +21,20 @@ It is possible for each of the splits to have their own <a class="reference-lin
When a new split is created, it will share the same note hoisting as the previous one. An easy solution to this is to simply hoist the notes after the split is created.
This is generally quite useful for reorganizing notes from one place to the other, by hoisting the old place in the first split and hoisting the new place to the second one. This will allow easy cut and paste without the tree jumping around from switching between notes.
This is generally quite useful for reorganizing notes from one place to the other, by hoisting the old place in the first split and hoisting the new place to the second one. This will allow easy cut and paste without the tree jumping around from switching between notes.
## Mobile support
Since v0.100.0, it's possible to have a split view on the mobile view as well, with the following differences from the desktop version of the split:
* On smartphones, the split views are laid out vertically (one on the top and one on the bottom), instead of horizontally as on the desktop.
* There can be only one split open per tab.
Interaction:
* To create a new split, click the three dots button on the right of the note title and select _Create new split_.
* This option will only be available if there is no split already open in the current tab.
* To close a split, click the three dots button on the right of the note title and select _Close this pane_.
* Note that this option will only be available on the second note in the split (the one at the bottom on smartphones, the one on the right on tablets).
* When long-pressing a link, a contextual menu will show up with an option to _Open note in a new split_.
* If there's already a split, the option will replace the existing split instead.

View File

@@ -63,7 +63,7 @@ For each note of the calendar, the following attributes can be used:
| `#startTime` | The time the event starts at. If this value is missing, then the event is considered a full-day event. The format is `HH:MM` (hours in 24-hour format and minutes). |
| `#endTime` | Similar to `startTime`, it mentions the time at which the event ends (in relation with `endDate` if present, or `startDate`). |
| `#color` | Displays the event with a specified color (named such as `red`, `gray` or hex such as `#FF0000`). This will also change the color of the note in other places such as the note tree. |
| `#calendar:color` | Similar to `#color`, but applies the color only for the event in the calendar and not for other places such as the note tree. (*Deprecated*) |
| `#calendar:color` | Similar to `#color`, but applies the color only for the event in the calendar and not for other places such as the note tree. (_Deprecated_) |
| `#iconClass` | If present, the icon of the note will be displayed to the left of the event title. |
| `#calendar:title` | Changes the title of an event to point to an attribute of the note other than the title, can either a label or a relation (without the `#` or `~` symbol). See _Use-cases_ for more information. |
| `#calendar:displayedAttributes` | Allows displaying the value of one or more attributes in the calendar like this:     <br> <br>![](9_Calendar_image.png)    <br> <br>`#weight="70" #Mood="Good" #calendar:displayedAttributes="weight,Mood"`   <br> <br>It can also be used with relations, case in which it will display the title of the target note:    <br> <br>`~assignee=@My assignee #calendar:displayedAttributes="assignee"` |