mirror of
https://github.com/takitsuba/obsidian-auto-bullet.git
synced 2026-07-22 05:42:45 +00:00
feat(main.ts): implement loadSettings and saveSettings methods to manage plugin settings feat(main.ts): create AutoBulletSettingTab to provide a user interface for settings feat(manifest.json): add hasSettings property to indicate the plugin has configurable settings
12 lines
355 B
JSON
12 lines
355 B
JSON
{
|
|
"id": "obsidian-auto-bullet",
|
|
"name": "Auto Bullet",
|
|
"version": "1.0.0",
|
|
"minAppVersion": "0.15.0",
|
|
"description": "Automatically inserts bullet points when you type spaces or tabs at the beginning of a line.",
|
|
"author": "takitsuba",
|
|
"authorUrl": "https://github.com/takitsuba",
|
|
"fundingUrl": "",
|
|
"isDesktopOnly": false,
|
|
"hasSettings": true
|
|
}
|