diff --git a/_posts/2016-06-05-aw-formatters-and-macros.md b/_posts/2016-06-05-aw-formatters-and-macros.md
index 1230005..86e8603 100644
--- a/_posts/2016-06-05-aw-formatters-and-macros.md
+++ b/_posts/2016-06-05-aw-formatters-and-macros.md
@@ -127,12 +127,13 @@ The code will be expanded to:
# Macros
Another new feature is macros. User may define any own function by using the following
-construction `$aw_macro{{macro body here with $some_arg}}`.
+construction
+`$aw_macro{% raw %}{{{% endraw %}macro body here with $some_arg{% raw %}}}{% endraw %}`.
The first argument is macros name, which is required. Another ones describe arguments
which will be passed to the macro call. Macro body may have any text (including templates,
lambdas, etc) and arguments which are defined by using `$`.
To put defined macro to your code use the following construction:
-`$aw_macro_my_macro_name<$cpu,$cpucl>{{}}` (body will be ignored here). In this
+`$aw_macro_my_macro_name<$cpu,$cpucl>{% raw %}{{}}{% endraw %}` (body will be ignored here). In this
example macro will be expanded to `macro body here with $cpu`.
diff --git a/ru/_posts/2016-06-05-aw-formatters-and-macros.md b/ru/_posts/2016-06-05-aw-formatters-and-macros.md
index 99238e2..783e8a5 100644
--- a/ru/_posts/2016-06-05-aw-formatters-and-macros.md
+++ b/ru/_posts/2016-06-05-aw-formatters-and-macros.md
@@ -129,11 +129,14 @@ X-AW-HasReturn=false
# Макросы
Другая особенность - макросы. Пользователь может определить свою функцию, используя
-следующую конструкцию `$aw_macro{{macro body here with $some_arg}}`.
+следующую конструкцию
+`$aw_macro{% raw %}{{{% endraw %}macro body here with $some_arg{% raw %}}}{% endraw %}`.
Первый аргумент - имя макроса - обязателен. Другие описывают аргументы, которые
будут переданы при вызове макроса. Тело макроса может иметь любой текст (включая
шаблоны, лямбды и прочее) и аргументы, определенные используя `$`.
-Чтобы вызвать макрос в коде нужно использовать следующую конструкцию: `$aw_macro_my_macro_name<$cpu,$cpucl>{{}}` (тело функции будет проигнорировано
-здесь). В данном примере, макрос будет развернут в `macro body here with $cpu`.
+Чтобы вызвать макрос в коде нужно использовать следующую конструкцию:
+`$aw_macro_my_macro_name<$cpu,$cpucl>{% raw %}{{}}{% endraw %}` (тело функции
+будет проигнорировано здесь). В данном примере, макрос будет развернут в
+`macro body here with $cpu`.
diff --git a/ru/projects/_posts/2013-02-21-awesome-widgets.md b/ru/projects/_posts/2013-02-21-awesome-widgets.md
index 9980e20..264b1f9 100644
--- a/ru/projects/_posts/2013-02-21-awesome-widgets.md
+++ b/ru/projects/_posts/2013-02-21-awesome-widgets.md
@@ -26,7 +26,7 @@ links:
- Пакеты для Ubuntu
- Миграция на версию 2.0
- Расширения
- - Форматеры и макросы
+ - Форматеры и макросы
---