Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
shindakun authored Jun 29, 2024
2 parents 2925a80 + e8e4fd6 commit 18faa0e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 1.0.22 (Sat Jun 29 2024)

#### 🐛 Bug Fix

- fix: default config value [#88](https://github.com/bingryan/obsidian-markdown-export-plugin/pull/88) ([@bingryan](https://github.com/bingryan))
- docs: update readme [#87](https://github.com/bingryan/obsidian-markdown-export-plugin/pull/87) ([@bingryan](https://github.com/bingryan))

#### Authors: 1

- [@bingryan](https://github.com/bingryan)

---

# 1.0.21 (Fri Jun 14 2024)

#### 🐛 Bug Fix
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ you can activate this plugin within Obsidian by doing the following:
- Open Settings > Third-party plugin
- Make sure Safe mode is **off**
- Click Browse community plugins
- Search for "Obsidian markdown export"
- Search for "markdown export"
- Click Install
- Once installed, close the community plugins window and activate the newly installed plugin

Binary file modified export.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-markdown-export-plugin",
"name": "markdown export",
"version": "1.0.21",
"version": "1.0.22",
"minAppVersion": "0.15.0",
"description": "This is a markdown export plugin for Obsidian.",
"author": "bingryan",
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class MarkdownExportSettingTab extends PluginSettingTab {
new Setting(containerEl)
.setName("Use Html tag <img /> to display image")
.setDesc(
"true default, <img /> tag will use the size specified in obsidian.",
"false default, <img /> tag will use the size specified in obsidian.",
)
.addToggle((toggle) =>
toggle
Expand Down Expand Up @@ -197,7 +197,7 @@ class MarkdownExportSettingTab extends PluginSettingTab {
new Setting(containerEl)
.setName("Remove brackets for outgoing links")
.setDesc(
"true default, if you want to keep the brackets in links, set this to false",
"false default, if you want to remove the brackets in links, set this to true",
)
.addToggle((toggle) =>
toggle
Expand Down

0 comments on commit 18faa0e

Please sign in to comment.