% gem install haml2slim
% ls app/views/emotions
_form.html.haml edit.html.haml index.html.haml new.html.haml show.html.haml
% haml2slim app/views/emotions
% ls app/views/emotions
_form.html.haml _form.html.slim edit.html.haml edit.html.slim index.html.haml index.html.slim new.html.haml new.html.slim show.html.haml show.html.slim
# app/views/emotions/show.html.slim:
p#notice= notice
p
b Body:
= @emotion.body
p
b Kind:
= @emotion.kind
= link_to 'Edit', edit_emotion_path(@emotion)
= link_to 'Back', emotions_path
OMG!