Skip to content

Commit

Permalink
View docs (#292)
Browse files Browse the repository at this point in the history
* add docs page for views

* reorder docs
  • Loading branch information
taramk committed Aug 8, 2023
1 parent 658b380 commit af1e2dc
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions web/docs/user/07.1-views.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
layout: layouts/docs.tsx
title: Views
---
## Views

You can view your data in many different ways using commands in the Command Palette.

### Document
Converting your node(s) to document view centers them in the panel, styles the nodes like paragraphs, and supports basic Markdown formatting.

*Note: document view is a one-way conversion. Document nodes can't be converted back to List (outline) view.*

#### Create a Document
With your cursor on the parent node of the node(s) you want to convert to a document, open the Command Palette and select **Make Document**.

#### Markdown formatting

##### Text styles
```html
*italic* or _italic_
**bold**
~~strikethrough~~
```
##### Lists
```html
- unordered lists
* with any of
+ these characters

1. ordered
2. lists
```

### Table
Useful for a set of nodes with common fields. Node fields will become columns.

#### Use Table View
With your cursor on the parent node of the nodes you want to convert to a document, open the Command Palette and select **View As Table**.

To revert back to List (outline) view, select the parent node and choose "View as List" from the Command Palette.

### Tabs
The tab view tidies up a common group of nodes, allowing you to view one tab at a time.

#### Use Tabs View
With your cursor on the parent node of the nodes you want to convert to a document, open the Command Palette and select **View As Tabs**.

0 comments on commit af1e2dc

Please sign in to comment.