chore: modify settings.png

This commit is contained in:
bekurin 2023-10-01 15:13:09 +09:00
parent 3d806c8fc2
commit 2baa0d9d45
4 changed files with 4 additions and 4 deletions

View File

@ -4,12 +4,12 @@ The Blog Publisher plugin helps to publish obsidian notes to blog platform. You
### Demo
[tistory publisher demo](./src/images/demo.gif)
![tistory publisher demo](./src/images/demo.gif)
### How to use
1. settings default `access token`, `visibility`, ``blog name``, `platform`
[settings.png](./src/images/settings.png)
![settings.png](./src/images/settings.png)
2. select the note that want to publish
3. open command tab and enter `publish-post`

View File

@ -52,7 +52,7 @@ class BlogPublisherSettingTab extends PluginSettingTab {
})
new Setting(settingContainerEl)
.setName("Blog Platform")
.setName("Platform")
.setDesc("select the platform want to publish.")
.addDropdown((cb) => {
cb.addOptions(defaultPlatformOptions)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 86 KiB

View File

@ -1,5 +1,5 @@
import { Plugin, Editor, MarkdownView, MarkdownRenderer } from "obsidian";
import { DEFFAULT_SETTINGS, BlogPublisherSettings as BlogPublisherSettings } from "./components/settings";
import { DEFFAULT_SETTINGS, BlogPublisherSettings } from "./components/settings";
import {PublishModal, ModifyModal} from "./components/modal";
import createPostApi from "./api/createPostApi";
import BlogPublisherSettingTab from "./components/settingTab";