From 187ad4a0b6559843958bbfb57ac964232da4b302 Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Thu, 9 Jun 2022 16:48:24 +0200 Subject: [PATCH] [editor] Add more special characters for TextEditor More german quoting characters. #209 --- .../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 5ec345dd8..4991d39c0 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 @@ -212,7 +212,9 @@ <button mat-button (click)="insertSpecialChar('♀')">♀</button> <button mat-button (click)="insertSpecialChar('♂')">♂</button> <br> + <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> <button mat-button (click)="insertSpecialChar('”')">”</button> -- GitLab