如何将以下 HTML 个 IE 条件句转换为 Slim?

How to conver the following HTML IE conditionals into Slim?

无法弄清楚如何将通常出现在 HTML 页面顶部的 IE 条件语句转换为 Ruby Slim:

<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->

有人知道如何转换为 Slim 吗?

以下片段应该足够了:

doctype html
/![if lt IE 7] <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""
/![if IE 7] <html class="no-js lt-ie9 lt-ie8" lang=""
/![if IE 8] <html class="no-js lt-ie9" lang=""
/! [if gt IE 8]><!
html.no-js lang="" 
  /! <![endif]

有一个很好的工具 https://html2slim.herokuapp.com/ 可以将 HTML 转换为 Slim,但是它并不理想,有时会出错。

还有一个 Ruby gem 可用于将 HTML 文件转换为 Slim 文件 (https://github.com/slim-template/html2slim)。