akalongman / akalongman/sublimetext-codeformatter
Javascript on HTML problem
オープン
- 主要言語
- Python
- スター
- 772
- フォーク
- 128
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
sample code
```
var isIE = function(ver) {
var b = document.createElement('b')
b.innerHTML = '<!--[if IE ' + ver + ']><i></i><![endif]-->'
return b.getElementsByTagName('i').length === 1
}
```
after format
```
var isIE = function(ver) {
var b = document.createElement('b')
b.innerHTML = '<!--[if IE ' + ver + ']>
<i>
</i>
<![endif]-->
'
return b.getElementsByTagName('i').length === 1
}
```
コントリビューションガイド
評価
この issue はまだ評価されていません。