From 97726c28335c0fa931e238c1b416018069359025 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Fri, 16 Sep 2022 11:27:21 +0800 Subject: [PATCH 1/2] =?UTF-8?q?:art:=20=E9=87=8D=E5=BB=BA=E7=B4=A2?= =?UTF-8?q?=E5=BC=95=E7=BB=86=E8=8A=82=E8=BF=9B=E5=BA=A6=E6=8E=A8=E9=80=81?= =?UTF-8?q?=E5=B1=95=E7=8E=B0=20https://github.com/siyuan-note/siyuan/issu?= =?UTF-8?q?es/5890?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/appearance/langs/en_US.json | 4 ++-- app/appearance/langs/es_ES.json | 4 ++-- app/appearance/langs/fr_FR.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/appearance/langs/en_US.json b/app/appearance/langs/en_US.json index 769cd2fc0..bf5143119 100644 --- a/app/appearance/langs/en_US.json +++ b/app/appearance/langs/en_US.json @@ -864,8 +864,8 @@ "86": "Please configure [Settings - About - Access authorization code]", "87": "Cannot move to this location", "88": "Finished parsing [%d] data files, remaining to be processed [%d]", - "89": "Data index [%s] of [%d] block-level elements has been created", - "90": "Search index [%s] for [%d] block-level elements has been created", + "89": "Created [%d] of data indexes of block-level elements [%s]", + "90": "Created [%d] of search indexes of block-level elements [%s]", "91": "TODO", "92": "TODO", "93": "TODO", diff --git a/app/appearance/langs/es_ES.json b/app/appearance/langs/es_ES.json index c705ce403..dda30be6f 100644 --- a/app/appearance/langs/es_ES.json +++ b/app/appearance/langs/es_ES.json @@ -864,8 +864,8 @@ "86": "Por favor, configure [Configuración - Acerca de - Código de autorización de acceso]", "87": "No se puede mover a esta ubicación", "88": "Se ha terminado de analizar [%d] archivos de datos, quedan por procesar [%d]", - "89": "Se ha creado el índice de datos [%s] de [%d] elementos a nivel de bloque", - "90": "Se ha creado el índice de búsqueda [%s] para [%d] elementos a nivel de bloque", + "89": "Creado [%d] de índices de datos de elementos a nivel de bloque [%s]", + "90": "Creado [%d] de índices de búsqueda de elementos a nivel de bloque [%s]", "91": "TODO", "92": "TODO", "93": "TODO", diff --git a/app/appearance/langs/fr_FR.json b/app/appearance/langs/fr_FR.json index e6ff84c6d..b8bc58349 100644 --- a/app/appearance/langs/fr_FR.json +++ b/app/appearance/langs/fr_FR.json @@ -864,8 +864,8 @@ "86": "Veuillez configurer [Paramètres - A propos de - Code d'autorisation d'accès]", "87": "Impossible de se déplacer vers cet endroit", "88": "Fin de l'analyse des fichiers de données [%d], restant à traiter [%d]", - "89": "L'index de données [%s] de [%d] éléments de niveau bloc a été créé", - "90": "L'index de recherche [%s] pour [%d] éléments de niveau bloc a été créé", + "89": "Créé [%d] d'index de données d'éléments de niveau bloc [%s]", + "90": "Création de [%d] index de recherche d'éléments de niveau bloc [%s]", "91": "TODO", "92": "TODO", "93": "TODO", From 9caf08c93b9b749bb6fa529fd2077791fd21c715 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Fri, 16 Sep 2022 11:46:45 +0800 Subject: [PATCH 2/2] =?UTF-8?q?:sparkles:=20=E8=A1=8C=E7=BA=A7=E5=85=83?= =?UTF-8?q?=E7=B4=A0=E6=94=AF=E6=8C=81=E5=A4=9A=E9=87=8D=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=20https://github.com/siyuan-note/siyuan/issu?= =?UTF-8?q?es/2911?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/util/lute.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/util/lute.go b/kernel/util/lute.go index 076e04d2d..2caf8875a 100644 --- a/kernel/util/lute.go +++ b/kernel/util/lute.go @@ -20,6 +20,7 @@ import "github.com/88250/lute" func NewLute() (ret *lute.Lute) { ret = lute.New() + ret.SetTextMark(true) ret.SetProtyleWYSIWYG(true) ret.SetBlockRef(true) ret.SetFileAnnotationRef(true)