2012-04-16, 18:53:59
Tip to avoid processing of some (% searchresults ... %) tags in tutorials, examples, etc. (so that you don't have to write them like ( % ... % ) and tell to remove the spaces...):
Edit page, switch to html source code mode and enclode opening tags (or one of its characters) within span tags. E.g.:
or:
If you have many (like Angryboy's tutorials) you may prefer to style the span with a class (to make it easier to locate later if you want to change all of them), like:
Edit page, switch to html source code mode and enclode opening tags (or one of its characters) within span tags. E.g.:
Code:
<span>(</span>% searchresults ... %)
Code:
<span>(%</span> searchresults ... %)
If you have many (like Angryboy's tutorials) you may prefer to style the span with a class (to make it easier to locate later if you want to change all of them), like:
Code:
<span class="NoTag">(</span>% searchresults ... %)