相关疑难解决方法(0)

Sublime text 2如何仅删除注释

在我的sass代码中,我有内联注释,我希望在崇高的文本中删除它们.是否可以永久删除所有评论内容?

@function emCalc($values) {
  $emValues: '';
  $max: length($values); //Get the total number of parameters passed
  @for $i from 1 through $max {
    $value: (nth($values, $i)); //Take the individual parameter
    $value: $value / ($value * 0 + 1); //Doing this gets you one unit (1px)
    $value: $value / $em-base * 1em; //Divide the px value by emBase and return the value as em
    $emValues: #{$emValues + $value}; //Append to array
    @if $i < $max {
      $emValues: #{$emValues + " "}; //Adding …
Run Code Online (Sandbox Code Playgroud)

sublimetext2

12
推荐指数
4
解决办法
2万
查看次数

标签 统计

sublimetext2 ×1