mirror of
https://github.com/tailormade-eu/obsidian-task-export-plugin.git
synced 2026-07-22 06:41:42 +00:00
Fix plugin ID: remove 'plugin' from id, add description punctuation
This commit is contained in:
parent
30b11493ad
commit
c686648e33
2 changed files with 5 additions and 5 deletions
|
|
@ -36,7 +36,7 @@ This is a TypeScript port of the [markdown-task-export](https://github.com/tailo
|
|||
1. Download the latest release from [GitHub Releases](https://github.com/tailormade-eu/obsidian-task-export-plugin/releases)
|
||||
2. Extract `main.js`, `manifest.json`, and `styles.css` to:
|
||||
```
|
||||
VaultFolder/.obsidian/plugins/task-export-plugin/
|
||||
VaultFolder/.obsidian/plugins/task-export/
|
||||
```
|
||||
3. Reload Obsidian
|
||||
4. Enable plugin in Settings → Community Plugins
|
||||
|
|
@ -139,7 +139,7 @@ YourVault/
|
|||
├── outstanding_tasks.csv ← Output file
|
||||
└── .obsidian/
|
||||
└── plugins/
|
||||
└── task-export-plugin/
|
||||
└── task-export/
|
||||
```
|
||||
|
||||
### Markdown Task Format
|
||||
|
|
@ -275,7 +275,7 @@ Install [Hot Reload Plugin](https://github.com/pjeby/hot-reload) for automatic p
|
|||
### Plugin Not Loading
|
||||
|
||||
1. Check console for errors: `Ctrl/Cmd + Shift + I`
|
||||
2. Verify files in `.obsidian/plugins/task-export-plugin/`:
|
||||
2. Verify files in `.obsidian/plugins/task-export/`:
|
||||
- `main.js`
|
||||
- `manifest.json`
|
||||
- `styles.css` (optional)
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"id": "task-export-plugin",
|
||||
"id": "task-export",
|
||||
"name": "Task Export Tool",
|
||||
"version": "1.0.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Export outstanding tasks to CSV for time tracking integration",
|
||||
"description": "Export outstanding tasks to CSV for time tracking integration.",
|
||||
"author": "Raoul Jacobs",
|
||||
"authorUrl": "https://github.com/tailormade-eu",
|
||||
"isDesktopOnly": false
|
||||
|
|
|
|||
Loading…
Reference in a new issue