The name field
is unformatted - No way by the CMS.
Maybe add some custom code JS (Select the word and change it to italic).
First, Add id
for the heading (By webflow UI)
<h2 id="demo">Visit UMF</h2>
Next, Add this code for post page (before body)
<script>
function changeUMFtoItalic() {
var str = document.getElementById("demo").innerHTML;
var italicStr = str.replace("UMF", "<i>UMF</i>");
document.getElementById("demo").innerHTML = italicStr ;
}
changeUMFtoItalic();
</script>
https://www.w3schools.com/code/tryit.asp?filename=FR7PEERD1247
This code will work fine for post page (change one heading). For collections you should use another code (loop throw all h2
inside some wrapper
)