diff --git a/app/changelogs/v3.6.3/v3.6.3.md b/app/changelogs/v3.6.3/v3.6.3.md new file mode 100644 index 000000000..eebd0574b --- /dev/null +++ b/app/changelogs/v3.6.3/v3.6.3.md @@ -0,0 +1,27 @@ +## Overview + +This version improves some details. + +## Changelogs + +Below are the detailed changes in this version. + +### Enhancement + +* [Improve Linux disk type detection](https://github.com/siyuan-note/siyuan/pull/17361) +* [Improve the dock panel title and tooltips](https://github.com/siyuan-note/siyuan/issues/17366) +* [Empty tags no longer appear in the tag panel](https://github.com/siyuan-note/siyuan/issues/17367) +* [Improve cloud configuration consistency](https://github.com/siyuan-note/siyuan/pull/17371) +* [Inline memo tooltips cannot render HTML](https://github.com/siyuan-note/siyuan/issues/17374) +* [Improve content escaping in formula blocks](https://github.com/siyuan-note/siyuan/issues/17375) +* [Improve YAML front-matter tag export](https://github.com/siyuan-note/siyuan/issues/17376) + +### Bugfix + +* [The tooltip should not be escaped](https://github.com/siyuan-note/siyuan/issues/17359) +* [Images in the database assets fields are not displaying](https://github.com/siyuan-note/siyuan/issues/17368) + +## Download + +* [B3log](https://b3log.org/siyuan/en/download.html) +* [GitHub](https://github.com/siyuan-note/siyuan/releases) diff --git a/app/changelogs/v3.6.3/v3.6.3_zh_CHT.md b/app/changelogs/v3.6.3/v3.6.3_zh_CHT.md new file mode 100644 index 000000000..ede6f2879 --- /dev/null +++ b/app/changelogs/v3.6.3/v3.6.3_zh_CHT.md @@ -0,0 +1,27 @@ +## 概述 + +此版本改進了一些細節。 + +## 變更記錄 + +以下是此版本中的詳細變更。 + +### 改進功能 + +* [改進 Linux 磁碟類型檢測](https://github.com/siyuan-note/siyuan/pull/17361) +* [改進停靠列面板的標題和工具提示](https://github.com/siyuan-note/siyuan/issues/17366) +* [標籤面板中不再顯示空白標籤](https://github.com/siyuan-note/siyuan/issues/17367) +* [改進雲端配置的一致性](https://github.com/siyuan-note/siyuan/pull/17371) +* [行級備註的工具提示無法渲染 HTML](https://github.com/siyuan-note/siyuan/issues/17374) +* [改良公式區塊中內容的轉義](https://github.com/siyuan-note/siyuan/issues/17375) +* [改進 YAML front-matter 中標籤的匯出](https://github.com/siyuan-note/siyuan/issues/17376) + +### 修復缺陷 + +* [工具提示不應轉義](https://github.com/siyuan-note/siyuan/issues/17359) +* [資料庫資源欄位中的圖片未顯示](https://github.com/siyuan-note/siyuan/issues/17368) + +## 下載 + +* [B3log](https://b3log.org/siyuan/download.html) +* [GitHub](https://github.com/siyuan-note/siyuan/releases) diff --git a/app/changelogs/v3.6.3/v3.6.3_zh_CN.md b/app/changelogs/v3.6.3/v3.6.3_zh_CN.md new file mode 100644 index 000000000..8a4dc72df --- /dev/null +++ b/app/changelogs/v3.6.3/v3.6.3_zh_CN.md @@ -0,0 +1,27 @@ +## 概述 + +此版本改进了一些细节。 + +## 变更记录 + +以下是此版本中的详细变更。 + +### 改进功能 + +* [改进 Linux 磁盘类型检测](https://github.com/siyuan-note/siyuan/pull/17361) +* [改进停靠栏面板的标题和工具提示](https://github.com/siyuan-note/siyuan/issues/17366) +* [标签面板中不再显示空标签](https://github.com/siyuan-note/siyuan/issues/17367) +* [改进云端配置的一致性](https://github.com/siyuan-note/siyuan/pull/17371) +* [行级备注的工具提示无法渲染 HTML](https://github.com/siyuan-note/siyuan/issues/17374) +* [改进公式块中内容的转义](https://github.com/siyuan-note/siyuan/issues/17375) +* [改进 YAML front-matter 中标签的导出](https://github.com/siyuan-note/siyuan/issues/17376) + +### 修复缺陷 + +* [工具提示不应被转义](https://github.com/siyuan-note/siyuan/issues/17359) +* [数据库资源字段中的图片未显示](https://github.com/siyuan-note/siyuan/issues/17368) + +## 下载 + +* [B3log](https://b3log.org/siyuan/download.html) +* [GitHub](https://github.com/siyuan-note/siyuan/releases) diff --git a/kernel/model/export.go b/kernel/model/export.go index 57192d7a0..1430db4ce 100644 --- a/kernel/model/export.go +++ b/kernel/model/export.go @@ -1820,6 +1820,7 @@ func yfm(docIAL map[string]string) string { tagLines := strings.Split(tags, ",") for _, tag := range tagLines { buf.WriteString(" - '") + tag = strings.ReplaceAll(tag, "'", "''") buf.WriteString(tag) buf.WriteString("'\n") }