-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1826 from CondeNast/utf8-encoding
chore: use utf8 charset when encoding entities
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import Renderer from "../src"; | ||
|
||
describe("encoding entities", () => { | ||
test("Japanese", () => { | ||
let doc = { | ||
text: "\uFFFC同性の両親", | ||
blocks: [ | ||
{ | ||
attributes: {}, | ||
id: "B00000000", | ||
parents: [], | ||
selfClosing: false, | ||
type: "paragraph", | ||
}, | ||
], | ||
marks: [], | ||
}; | ||
|
||
expect(Renderer.render(doc)).toEqual("<p>同性の両親</p>"); | ||
}); | ||
test("HTML reserved entities", () => { | ||
let doc = { | ||
text: "\uFFFC<>&", | ||
blocks: [ | ||
{ | ||
attributes: {}, | ||
id: "B00000000", | ||
parents: [], | ||
selfClosing: false, | ||
type: "paragraph", | ||
}, | ||
], | ||
marks: [], | ||
}; | ||
|
||
expect(Renderer.render(doc)).toEqual("<p><>&</p>"); | ||
}); | ||
}); |