html2slim icon indicating copy to clipboard operation
html2slim copied to clipboard

When I convert the meta part of the erb file, the result is a bit different

Open hidehiro98 opened this issue 6 years ago • 0 comments

When I convert this,

<% set_meta_tags title: 'よくある質問' %>
<% set_meta_tags \
  description: 'クリーマクラフトパーティ(Creema craft party)のよくある質問はこちら。', \
  open_graph: { \
    description: 'クリーマクラフトパーティ(Creema craft party)のよくある質問はこちら。' \
  } %>

the result is this.

- set_meta_tags title: '出展ガイド'
- set_meta_tags \
-   description: 'クリーマクラフトパーティ(Creema craft party)のよくある質問はこちら。', \
-   open_graph: { \
-     description: 'クリーマクラフトパーティ(Creema craft party)のよくある質問はこちら。' \
-   }

I might want this.

- set_meta_tags title: 'フードの出展申込'
- set_meta_tags \
  description: 'クリーマクラフトパーティ(Creema craft party)のよくある質問はこちら。', \
  open_graph: { \
    description: 'クリーマクラフトパーティ(Creema craft party)のよくある質問はこちら。' \
  }

Thank you for your corparation!

hidehiro98 avatar Nov 02 '18 03:11 hidehiro98