You can insert any text with markdown formatting into a tariff plan description field. This page tells more about the supported tags. 

In the tariff description field, you can use  HTML-layout and insert images.

The standard markdown tools do not support color fonts.

Text formatting 


Markdown allows users to format a text using special characters. Formatting variants are given in the table below: 

SyntaxOutput
**Bold text**

Bold text

__Bold text__
*Italic*

Italic

_Italic_
***Bold and italic***

Bold and italic

__*Bold and italic*__
___Bold and italic___
_**Bold and italic**_
**_Bold and italic_**
~~Strike-through~~

Strike-through

#Header 1

Header 1

##Header2

Header2

###Header 3

Header 3

####Header 4

Header 4

#####Header 5
Header 5
######Header 6
Header 6

Inserting additional elements 


With Markdown you can add additional elements, such as lists, links, etc. into your text. This table describes the elements. 

SyntaxOutputDescription

[Link text](https://example.com)

Link text

Link to an additional resource.

[][ex]

[ex]:https://example.com

Put the purpose of the link ([ex]:https://example.com) at the end of the markdown-layout. Otherwise, the system cannot read some of its parts.

Header1 | Header2

---------------- | ----------------

Cell 1 | Cell 1 2

Cell 2 1 | Cell 2 2

Header 1 Header 2

Cell1 1 Cell1 2

Cell 2 1 Cell 2 2

Inserts a table. Hyphens are used to highlight a header: cells that are located above the hyphens are considered the table header. You can enter any number of hyphens.
>Comment

Comment

Comment. Not supported in BILLmanager 5.

* First element

* Second element

* Third element

  • First element

  • Second element

  • Third element



Unordered list. Not supported in BILLmanager 5.

+ First element

+ Second element

+ Third element

- First element

- Second element

- Third element

* First element

  Embedded element 1

  * Embedded element 2

* Second element

  • First element

    • Embedded element 1

    • Embedded element 2

  • Second element

Unordered list with several embedded elements. Not supported in BILLmanager 5.

1. First element

2. Second element

3. Third element

  1. First element

  2. Second element

  3. Third element

Ordered list. Not supported in BILLmanager 5.

1\. First element

2\. Second element

3\. Third element

1. First element 2. Second element 3. Third element

Ordered list without conversion. Not supported in BILLmanager 5.
***
Horizontal separating line. Not supported in BILLmanager 5.
---

Additional changes


Some constructions in Markdown are automatically converted into special symbols or formatting elements. This table describes additional changes that can be made in Markdown. 

SyntaxOutput Additional information
(tm)
(r)®
(c)©
1/4¼

a^b

ab
a^(b+c)Ab+c
...
--
---
`**Text for example*`

**Text for example**

Text inside ` is read as a code: it is displayed as a mono-spaced text.
``Text with ` tilde``

Text with tilde`

To show a tilde in the text (`), you need to escape a text with two characters `.

```

Multiple line

code

```

Multiple line

code
To display several code lines (mono-spaced text), you need to escape the text with three characters `.

Line  

break

Line

break

To make a line break, you need to add two spaces into the end of the line.
&tradeHTML-code symbols are converted into symbols.
&reg®
&copy©

Reserved characters


Some reserved characters can be displayed in the text.  To do so,  escape them with backslashes (\). This table describes the symbols that can be shown in the text and escaping examples. 

SyntaxOutput
\\Random text\\

\Random text\

\`Random text\`

`Random text`

\*Random text\*

*Random text*

\_Random text\_

_Random text_

\{Random text\}

{Random text}

\[Random text\]

[Random text]

\(Random text\)

(Random text)

\#Random text\#

#Random text#

\+Random text\+

+Random text+

\-Random text\-

-Random text-

\.Random text\.

.Random text.

\!Random text\!

!Random text!