From 9d639f55fe743e92ebf145108a934923876878cb Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Thu, 9 Dec 2021 17:06:15 +0100 Subject: [PATCH] [editor] Add special character 'apostrophe' --- .../editor/src/app/text-editor/rich-text-editor.component.html | 1 + 1 file changed, 1 insertion(+) 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 ee6b40121..38b355a8b 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 @@ -195,6 +195,7 @@ <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> -- GitLab