Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
johansatge committed Jan 3, 2024
1 parent f5650f5 commit 5606e0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ The following options are available:
| Option | Default value | Description |
| --- | --- | --- |
| `style` | `nestedList` | Table of contents style (can be `nestedList` or `inlineFirstLevel`) |
| `minLevel` | `0` | Include headings from the speficied level |
| `maxLevel` | `0` | Include headings up to the speficied level (`0` for no limit) |
| `minLevel` | `0` | Include headings from the specified level |
| `maxLevel` | `0` | Include headings up to the specified level (`0` for no limit) |
| `includeLinks` | `true` | Make headings clickable |
| `debugInConsole` | `false` | Print debug info in Obsidian console |

Expand Down
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ const availableOptions = {
minLevel: {
type: 'number',
default: 0,
comment: 'Include headings from the speficied level'
comment: 'Include headings from the specified level'
},
maxLevel: {
type: 'number',
default: 0,
comment: 'Include headings up to the speficied level',
comment: 'Include headings up to the specified level',
},
includeLinks: {
type: 'boolean',
Expand Down

0 comments on commit 5606e0b

Please sign in to comment.