The NBSP Tag

    Syntax: {NBSP::text[::int]}
    Function: The NBSP tag will replace any whitespaces in the text argument with a HTML " " - if there is an int argument, it will also replace the tabs with as much " " as the int shows
    Example:

    *SOME_TEXTTAG

    this text will have   whitespaces		and tabs!

    {NBSP::{SOME_TEXTTAG}::5}

    The output will look as follows:

    this text will have whitespaces         and tabs!
    

Back