diff --git a/README.md b/README.md index e56a154..24f4380 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,11 @@ Basic Usage The core of the templater is focused on some simple reg-ex replcements. As Below. * __Output / Logic__ - * {{ $hello }} --> - * {% if(true): %}True!{% endif %} --> True! + * `{{ $hello }}` --> `` + * `{% if(true): %}True!{% endif %}` --> `True!` * __Templater Shortcuts__ - * {{t Render('menu') }} --> Render('menu') ;?> - * {%t StartSection('content') %} --> StartSection('content') ;?> + * `{{t Render('menu') }}` --> `Render('menu') ;?>` + * `{%t StartSection('content') %}` --> `StartSection('content') ;?>` The theme here is that double brackets output and bracket-percent performs actions/does logic.