diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-06 08:33:50 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-06 08:33:50 -0700 |
commit | 3e687f1a8ccb1cd0d52a966005551d528ca141df (patch) | |
tree | 30d433ba19ec49808cc0f0de8a161835ad5f29c9 /zh-cn/less-cn.html.markdown | |
parent | 9fa4b5af80f1cd7fe2469c198d02a21e4f8884a1 (diff) |
Remove leading and trailing empty lines in code blocks
Diffstat (limited to 'zh-cn/less-cn.html.markdown')
-rw-r--r-- | zh-cn/less-cn.html.markdown | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/zh-cn/less-cn.html.markdown b/zh-cn/less-cn.html.markdown index 365a0287..973c268b 100644 --- a/zh-cn/less-cn.html.markdown +++ b/zh-cn/less-cn.html.markdown @@ -13,8 +13,6 @@ Less是一种CSS预处理器,它增加了诸如变量、嵌套、mixin等功 Less(以及其它预处理器,如[Sass](http://sass-lang.com/))能帮助开发人员编写易维护,DRY (Don't Repeat Yourself) 的代码。 ```css - - //单行注释在编译成CSS后会被删除。 /* 多行注释将保留. */ @@ -366,8 +364,6 @@ body { .gutter { width: 6.25%; } - - ``` ## 实践Less |