putting emoji's HTML entities emits square boxes instead of actual emoji
Open
bug
- Dominant language
- JavaScript
- Stars
- 874
- Forks
- 62
- PR merge metrics
- No merged PRs in 30d
Description
Input:
```jsx
ππππ
;
```
Expected:
```js
React.createElement( 'div', null, "ππππ" );
```
Actual:
```js
React.createElement( 'div', null, "οοοο" );
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Start by reproducing the JSX input containing the hexadecimal and decimal emoji entities, then trace where Buble decodes or emits JSX text. Done means the input compiles to actual ππππ characters rather than private-use square-box characters; no file or test is named in the issue.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- compilers
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 48/100