gist

2012年4月9日月曜日

HTMLをCoffeeKupに変換する「html2coffeekup」を試す

html2coffeekup は HTMLをcoffeekup 形式に変換するプラグインです。マイナーですがCoffeeKupテンプレート大好きな方には必須のツールです。

早速インストール。

$ npm install -g html2coffeekup

使い方は簡単。

$ html2coffeekup sample.html > sample.coffee

変換前

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>test</title>
</head>
<body>
  <h1>This is sample page</h1>
  <p>Hello, world!</p>
</body> 
</html>

変換後

doctype TODO
html ->
  head ->
    meta charset: 'utf-8'
    title 'test'
  body ->
    h1 'This is sample page'
    p 'Hello, world!'

これは便利かもしれません。

0 件のコメント: