Skip to content
Snippets Groups Projects
Commit eb8a9f14 authored by rhenck's avatar rhenck
Browse files

[editor]Add new special character to TextEditor: thin non-breaking space

parent 4ce18725
No related branches found
No related tags found
No related merge requests found
...@@ -208,6 +208,8 @@ ...@@ -208,6 +208,8 @@
<mat-menu #specialCharsMenu="matMenu" yPosition="above"> <mat-menu #specialCharsMenu="matMenu" yPosition="above">
<button mat-button (click)="insertSpecialChar('&nbsp;')" <button mat-button (click)="insertSpecialChar('&nbsp;')"
[matTooltip]="'Geschütztes Leerzeichen'">&blank;</button> [matTooltip]="'Geschütztes Leerzeichen'">&blank;</button>
<button mat-button (click)="insertSpecialChar('&#8239;')"
[matTooltip]="'Geschütztes Leerzeichen (schmal)'">&blank;<sub>2</sub></button>
<button mat-button (click)="insertSpecialChar('&ndash;')">&ndash;</button> <button mat-button (click)="insertSpecialChar('&ndash;')">&ndash;</button>
<button mat-button (click)="insertSpecialChar('&female;')">&female;</button> <button mat-button (click)="insertSpecialChar('&female;')">&female;</button>
<button mat-button (click)="insertSpecialChar('&male;')">&male;</button> <button mat-button (click)="insertSpecialChar('&male;')">&male;</button>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment