Skip to content

Commit

Permalink
Update to allow two elisions in one syllable.
Browse files Browse the repository at this point in the history
  • Loading branch information
craigsapp committed Aug 27, 2023
1 parent f9c5f07 commit 9e07d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markup/templates.html
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ <h2>{{{formatTitle TITLE}}} {{{parentheticalinfo this}}} </h2>

for (let j=0; j<syls.length; j++) {
sylCount++;
syls[j] = syls[j].replace(/_/, "<span class='elision hide-elision'>‿</span>", "g");
syls[j] = syls[j].replace(/_/g, "<span class='elision hide-elision'>‿</span>");
let syl = syls[j];
console.log("SYL", syl);

Expand Down

0 comments on commit 9e07d02

Please sign in to comment.