5 Kommentare (5 Kommentare)0 Reaktionen (0 Reaktionen)0 zugewiesene Personen (0 zugewiesene Personen)JavaScript6.790 Stars (6.790 Stars)231 Forks (231 Forks)batch import
bughacktoberfesthelp wanted
Beschreibung
the name of city in arabic are reversed

Contributor Guide
- Tech Stack
- javascriptnodejs
- Domain
- cli
- Issue Type
- bug
- SchwierigkeitGeschätzte Implementierungsschwierigkeit für neue Contributors, von 1 für sehr kleine Änderungen bis 5 für Expertenarbeit.
- 3
- Geschätzte ZeitEin grober Zeitrahmen, um zu recherchieren, zu implementieren, zu testen und einen Pull Request vorzubereiten.
- 1-3 hours
- AktivitätsstatusWie verfügbar das Issue gerade wirkt: frisch, aktiv, stale, blockiert oder wartet auf Maintainer-Input.
- stale
- KlarheitWie klar das Issue die erwartete Änderung, Akzeptanzkriterien und den nächsten Schritt erklärt.
- clear
- Voraussetzungen
- Basic JavaScriptUnderstanding of Unicode and bidirectional text
- EinsteigerfreundlichkeitEin Score von 1 bis 100, der schätzt, wie zugänglich dieses Issue für First-Time Contributors ist.
- 65
- Research-Richtung
- Investigate the rendering logic in MapSCII, likely in the core JavaScript files responsible for outputting text to the console. The bug is that Arabic city names appear reversed, indicating a missing handling of bidirectional text (BiDi). Look at how strings are printed and consider applying Unicode BiDi algorithm (e.g., using the 'bidi' or 'unicode bidi' CSS like properties, or manually detecting RTL characters). Check if there are any open or closed PRs related to this issue and review the comments for additional context. The fix likely involves detecting Arabic characters and ensuring proper display order in console output.