feat: add custom quotation marks for multilingual quotes

Allows users to specify custom opening and closing quotation marks for
the multilingual quote shortcode.
The quotation marks can be configured per language in config.toml.
If not specified, default quotation marks will be used.
This commit is contained in:
welpo
2023-06-07 01:50:43 +02:00
parent 8b7f53e3ca
commit dd73e52729
2 changed files with 27 additions and 5 deletions

View File

@@ -67,6 +67,9 @@ table_of_contents = "Tabla de contenido"
last_updated_on = "Última actualización el"
show_original_quote = "Mostrar cita original"
show_translation = "Mostrar traducción"
# Quotation marks for multilingual quote shortcode.
open_quotation_mark = "«"
close_quotation_mark = "»"
[languages.ca.translations]
language_name = "Català"
@@ -97,6 +100,9 @@ table_of_contents = "Taula de contingut"
last_updated_on = "Última actualizació el"
show_original_quote = "Mostra la cita original"
show_translation = "Mostra la traducció"
# Quotation marks for multilingual quote shortcode.
open_quotation_mark = "«"
close_quotation_mark = "»"
[extra]