railsでお決まりのliタグをシンプルに書くsexy_liというgemを作りました。
komagata/sexy_liBefore:
ul
- @posts.each do |post|
li
.id post.id
.title= post.title
After:
ul= render_li_for @posts
_post.html.slim:
.id= post.id
.title= post.title
という感じです。liに付くclassやid、partial名やlocal変数を決め打ちにしちゃおうというだけです。