This commit is contained in:
Gabriele Cannata 2023-09-23 09:18:10 +02:00
commit c65ebea131

View file

@ -1,6 +1,6 @@
# Obsidian Sheets
![](docs/Screen01.png)
![](docs/screen01.png)
This plugin enables to work with tabular data directly in Obsidian: either storing data in the note itself, or on an external Excel or CSV file.
The following files are supported:
@ -21,18 +21,18 @@ In order to create a sheet it is enough to create a code block with the `sheet`
Following is the complete list of properties with their default values:
~~~markdown
~~~YAML
```sheet
filename: <path relative to vault root>
enableSave: <value in settings>
autoSave: <value in settings>
height: 540,
width: "auto",
rows: 100,
cols: 26,
fontSize: 10,
cellHeight: 25,
cellWidth: 100,
height: 540
width: "auto"
rows: 100
cols: 26
fontSize: 10
cellHeight: 25
cellWidth: 100
```
~~~