mts396
mts396

Reputation: 878

What does the text within the curly brackets (and the vertical lines within them) represent?

See below:

<p
style="margin: 0px; text-align: left; color: #666666; line-height: 25px; 
font-family: Tahoma, Verdana, Geneva, sans-serif; font-size: 14px; font-weight: bold;">
&bull; {|FeatureFour|}</p>

So the above, is a standard paragraph tag but with the extra text (which seems like some sort of variable);

The code is from a random markup file I came across, I am curius to see what it represents.

Upvotes: 0

Views: 256

Answers (1)

Haerriz
Haerriz

Reputation: 153

&bull gives you to use a bullet mark and the {|FeatureFour|} is the content inside the <p> tag, so {|FeatureFour|} is just a paragraph content

<p
style="margin: 0px; text-align: left; color: #666666; line-height: 25px; 
font-family: Tahoma, Verdana, Geneva, sans-serif; font-size: 14px; font-weight: bold;">
&bull; {|FeatureFour|}</p>

<p
style="margin: 0px; text-align: left; color: #666666; line-height: 25px; 
font-family: Tahoma, Verdana, Geneva, sans-serif; font-size: 14px; font-weight: bold;">
&bull; {|FeatureFour|}</p>

<p
style="margin: 0px; text-align: left; color: #666666; line-height: 25px; 
font-family: Tahoma, Verdana, Geneva, sans-serif; font-size: 14px; font-weight: bold;">
&bull; Hello world!</p>

. You can change these content in the text editor.

Upvotes: 1

Related Questions