Hello I have inserted html elements into my yml file
content : |
Hello! I am a <span>Graphic Designer</span> & <span>Web Developer</span>.
This is how I added this content to my html <div class="content">{{ .content | markdownify }}</div>
But once I tried to style it that way, it does not work, I wonder why!
.content{
span{
color: $primary;
}
}