Expand my Community achievements bar.

Nomination window for the Adobe Community Advisor Program, Class of 2025, is now open!
SOLVED

trying to split eMdash (long dash) but DTM converts my dash to short dash

Avatar

Level 4

var dates = document.querySelector('#txDates').textContent.split(' — ');

 

trying to split the long dash that I have on my content page but whenever i save the rule in DTM, it converts the long dash to short dash. I can't use &eMdash; because it displays like the following:

 

<span>Monday, Mar 16, 2020</span> — <span>Wednesday, Mar 18, 2020</span>

 

any help is greatly appreciated.

1 Accepted Solution

Avatar

Correct answer by
Level 4

Perhaps try using the HTML entity code for the EM Dash

 

&#8212;

 

 

View solution in original post

1 Reply

Avatar

Correct answer by
Level 4

Perhaps try using the HTML entity code for the EM Dash

 

&#8212;