In Slim, when should I use double equals sign?
For example:
== yield
== render 'partial'
== stylesheet_link_tag "application", media: "all"
title == full_title(yield(:title))
- flash.each do |key, value|
== value
or
= yield
= render 'partial'
= stylesheet_link_tag "application", media: "all"
title == full_title(yield(:title))
- flash.each do |key, value|
= value
=
inserts HTML with escaped characters. Example:==
inserts HTML without escaping. It is needed when you have already rendered HTML and you need to insert it to your layout directly. Example: