From 6b784d4a2a24ce9dd74a8f11854b5d2fb511202b Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Fri, 19 Nov 2021 12:02:05 +0100 Subject: [PATCH] [editor] Add special chatcter buttons for typographic quotes --- .../editor/src/app/text-editor/rich-text-editor.component.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/editor/src/app/text-editor/rich-text-editor.component.html b/projects/editor/src/app/text-editor/rich-text-editor.component.html index 921ddee13..a9371457b 100644 --- a/projects/editor/src/app/text-editor/rich-text-editor.component.html +++ b/projects/editor/src/app/text-editor/rich-text-editor.component.html @@ -165,6 +165,8 @@ <mat-menu #specialCharsMenu="matMenu" yPosition="above"> <button mat-button (click)="insertSpecialChar(' ')" [matTooltip]="'Geschütztes Leerzeichen'">␣</button> + <button mat-button (click)="insertSpecialChar('„')">„</button> + <button mat-button (click)="insertSpecialChar('”')">”</button> <button mat-button (click)="insertSpecialChar('♀')">♀</button> <button mat-button (click)="insertSpecialChar('♂')">♂</button> <button mat-button (click)="insertSpecialChar('µ')">µ</button> -- GitLab