diff --git a/docs/user-guide/printing-to-pdf-tips.md b/docs/user-guide/printing-to-pdf-tips.md
new file mode 100644
index 000000000..e4567b8ff
--- /dev/null
+++ b/docs/user-guide/printing-to-pdf-tips.md
@@ -0,0 +1,87 @@
+# Printing to PDF tips
+
+In this article:
+
+ * [PDF syntax](#pdf-code-syntax)
+ * [Text](#text)
+ * [Logo/Image](#logoimage)
+ * [Table](#table)
+ * [Link](#link)
+
+## PDF code syntax
+
+If you open a template code view (`>`) you will see that your PDF document data is markupped with the tags well known in HTML.
+
+**Note!**
+Due to a security policy some of HTML tags, attributes or styles may not be supported or allowed by editor. So it will truncate them automatically.
+
+## Text
+
+* `some text` - bold text style
+* `some text` - underlined text style
+* `some text` - italic text style
+* `some text` - crossline the text
+* `
` - insert single line breaks in a text
+* `some text` - element which is used to color a part of a text: ``
+
+#### Image resize
+
+* Setting a size with percentage: `style="width: 25%;"`
+* Setting a size with pixels: `width="300" height="100"`
+
+## Table
+
+2x2 table structure example:
+```
+
+
+
+```
+* `border="0.5pt"` - table attribute for setting the width of a table border. Without this parameter you won't see the table borders.
+* `bgcolor="#659B86"` - set a background color. Works for the `
+
+
+ id
+
+
+ user_name
+
+
+
+
+
+ 1
+
+
+ Admin
+
+ ` and the ` ` tags.
+* `width="25%"` - set a table cell width.
+* `text-align: center;` - set a text position. Supports: `center`, `left`, `right`, ` justify`.
+* `color: rgb(0, 0, 0);` - set the color of the text.
+* `font-size: 12px;` - set the text size.
+* `line-height: 1;` - set a line height.
+* ` ` & ` ` - defines a table raw.
+* `