The idea of finding a text replacement

has the following text

````

// 

<i></i><i></i>

that is,
odd `is replaced by < I > , and
even` is replaced by < / I >

.

how should I replace it with js?


I don't feel very good when I write it myself

while (str.includes('`')) {
  str = str.replace('`', PPi % 2 == 1 ? '<i>' : '</i>')
}


'````'.replace(/(`)([^`]*)\1/g, '<i>$2</i>')
Menu