Skip to content

Commit

Permalink
fixes pipe characters getting stripped from textSplit function (closes
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Jul 25, 2019
1 parent 8ea046a commit 3921eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textSplit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {default as stringify} from "./stringify";
import {default as combiningMarks} from "./combiningMarks";
import {merge} from "d3-array";

const splitChars = ["-", ";", ":", "&",
const splitChars = ["-", ";", ":", "&", "|",
"u0E2F", // thai character pairannoi
"u0EAF", // lao ellipsis
"u0EC6", // lao ko la (word repetition)
Expand Down

0 comments on commit 3921eda

Please sign in to comment.