Hello, I want to create styling codes. For example I want to use [h3] [/h3]
I have this code :
Regular Expression
I want to use those stylings when h3 code is applied
What should I write as replacement?
I have this code :
Regular Expression
\[H3\](.*?)\[/H3\]
I want to use those stylings when h3 code is applied
.h3main {
text-shadow: none;
font-size: 14px;
font-weight: normal;
padding-bottom: 5px;
margin-bottom: 2px;
color: #b69d4b;
}
.h3main span {
background: #b69d4b;
padding: 4px 8px;
border-radius: 2px;
color: #FFF;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.04);
}
What should I write as replacement?