I recently realized that I used underscores instead of hyphens in some of my CSS class and id names. To correct this, I want to replace all underscores with hyphens using the sublime text replace feature (ctrl + H). Is there a way to change underscores to hyphens in only the id and class names in my HTML template?
For example:
<div id=“contact_container”></div>
Should be changed to:
<div id="contact-container"></div>