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('&nbsp;')"
               [matTooltip]="'Geschütztes Leerzeichen'">&blank;</button>
+      <button mat-button (click)="insertSpecialChar('&bdquo;')">&bdquo;</button>
+      <button mat-button (click)="insertSpecialChar('&rdquo;')">&rdquo;</button>
       <button mat-button (click)="insertSpecialChar('&female;')">&female;</button>
       <button mat-button (click)="insertSpecialChar('&male;')">&male;</button>
       <button mat-button (click)="insertSpecialChar('&micro;')">&micro;</button>
-- 
GitLab