diff options
Diffstat (limited to 'zh-cn')
37 files changed, 3 insertions, 62 deletions
diff --git a/zh-cn/asciidoc-cn.html.markdown b/zh-cn/asciidoc-cn.html.markdown index 0709e8c1..c8cdd180 100644 --- a/zh-cn/asciidoc-cn.html.markdown +++ b/zh-cn/asciidoc-cn.html.markdown @@ -84,7 +84,6 @@ _用下划线创建斜体_ ==== 第 3 级 <h4> ===== 第 4 级 <h5> - ``` 列表 diff --git a/zh-cn/awk-cn.html.markdown b/zh-cn/awk-cn.html.markdown index 02f1f7d5..95f676fe 100644 --- a/zh-cn/awk-cn.html.markdown +++ b/zh-cn/awk-cn.html.markdown @@ -318,8 +318,8 @@ END { if (nlines) print "The average age for " name " is " sum / nlines } - ``` + 更多: * [Awk 教程](http://www.grymoire.com/Unix/Awk.html) diff --git a/zh-cn/bf-cn.html.markdown b/zh-cn/bf-cn.html.markdown index 2d2a114a..b6cc9be0 100644 --- a/zh-cn/bf-cn.html.markdown +++ b/zh-cn/bf-cn.html.markdown @@ -66,6 +66,7 @@ ASCII中表示'A', 所以'A'就会被打印出来。 为了解决这个问题,我们可以增加 #4 的值,然后把 #4 的值复制到 #2, 最后结果就保存在 #3 中了。 ``` + 好了这就是brainfuck了。也没那么难,是吧?为了好玩,你可以写你自己的 brainfuck程序,或者用其他语言写一个brainfuck的解释器,解释器非常容易 实现,但是如果你是一个自虐狂的话,你可以尝试用brainfuck写一个brainfuk的 diff --git a/zh-cn/c++-cn.html.markdown b/zh-cn/c++-cn.html.markdown index db36ebc4..816335c2 100644 --- a/zh-cn/c++-cn.html.markdown +++ b/zh-cn/c++-cn.html.markdown @@ -565,6 +565,7 @@ void doSomethingWithAFile(const std::string& filename) // 当它们脱离作用域时,析构器会自动释放其中储存的内容。 // - 用lock_guard和unique_lock实现的互斥 ``` + 扩展阅读: * [CPP Reference](http://cppreference.com/w/cpp) 提供了最新的语法参考。 diff --git a/zh-cn/c-cn.html.markdown b/zh-cn/c-cn.html.markdown index 851f2981..3bdc8479 100644 --- a/zh-cn/c-cn.html.markdown +++ b/zh-cn/c-cn.html.markdown @@ -604,7 +604,6 @@ typedef void (*my_fnp_type)(char *); // = += -= *= /= %= &= ^= |= <<= >>= | 从右到左 // // , | 从左到右 // //---------------------------------------------------// - ``` ## 更多阅读 diff --git a/zh-cn/cobol-cn.html.markdown b/zh-cn/cobol-cn.html.markdown index 08eb36fb..75375e86 100644 --- a/zh-cn/cobol-cn.html.markdown +++ b/zh-cn/cobol-cn.html.markdown @@ -178,12 +178,6 @@ COBOL是一门面向商业的语言,它从1960年最初设计以来被修订 *然后重新执行程序. 这次的输出变成: THE FULL NAME IS: BOB GIBBERISH COBB - - - - - - ``` ## 想了解更多吗? diff --git a/zh-cn/crystal-cn.html.markdown b/zh-cn/crystal-cn.html.markdown index b69ce688..078cf25f 100644 --- a/zh-cn/crystal-cn.html.markdown +++ b/zh-cn/crystal-cn.html.markdown @@ -10,7 +10,6 @@ lang: zh-cn --- ```crystal - # 这是一行注释 # 一切都是对象(object) @@ -556,7 +555,6 @@ rescue ex4 # 捕捉任何类型的异常 end ex #=> "ex2" - ``` ## 参考资料 diff --git a/zh-cn/csharp-cn.html.markdown b/zh-cn/csharp-cn.html.markdown index b6cc70c0..d11fcac5 100644 --- a/zh-cn/csharp-cn.html.markdown +++ b/zh-cn/csharp-cn.html.markdown @@ -1307,7 +1307,6 @@ namespace Csharp7 } } } - ``` ## 没有涉及到的主题 diff --git a/zh-cn/css-cn.html.markdown b/zh-cn/css-cn.html.markdown index ec937dfb..b22ac878 100644 --- a/zh-cn/css-cn.html.markdown +++ b/zh-cn/css-cn.html.markdown @@ -134,7 +134,6 @@ div.some-parent.class-name {} font-family: "Courier New", Trebuchet, Arial; /* 如果第一个 字体没找到,浏览器会使用第二个字体,以此类推 */ } - ``` ## 使用 @@ -154,7 +153,6 @@ CSS文件使用 `.css` 后缀。 这是你最不该干的事情。 --> <div style='property:value;'> </div> - ``` ## 优先级 @@ -178,7 +176,6 @@ p {} /*E*/ p { property: value !important; } - ``` 然后标记语言为: diff --git a/zh-cn/dart-cn.html.markdown b/zh-cn/dart-cn.html.markdown index 79db8e5c..28bed25c 100644 --- a/zh-cn/dart-cn.html.markdown +++ b/zh-cn/dart-cn.html.markdown @@ -509,7 +509,6 @@ main() { example27, example28, example29, example30 ].forEach((ef) => ef()); } - ``` ## 延伸阅读 diff --git a/zh-cn/elixir-cn.html.markdown b/zh-cn/elixir-cn.html.markdown index 0ed1d823..621999b6 100644 --- a/zh-cn/elixir-cn.html.markdown +++ b/zh-cn/elixir-cn.html.markdown @@ -12,7 +12,6 @@ Elixir 是一门构建在Erlang VM 之上的函数式编程语言。Elixir 完 另外还提供了更标准的语法,特性。 ```elixir - # 这是单行注释, 注释以井号开头 # 没有多行注释 diff --git a/zh-cn/erlang-cn.html.markdown b/zh-cn/erlang-cn.html.markdown index 32e84278..2fbce995 100644 --- a/zh-cn/erlang-cn.html.markdown +++ b/zh-cn/erlang-cn.html.markdown @@ -248,7 +248,6 @@ CaculateAera ! {circle, 2}. % 12.56000000000000049738 % shell也是一个进程(process), 你可以使用`self`获取当前 pid self(). % <0.41.0> - ``` ## References diff --git a/zh-cn/fortran-cn.html.markdown b/zh-cn/fortran-cn.html.markdown index ab521e0a..d1b31d2c 100644 --- a/zh-cn/fortran-cn.html.markdown +++ b/zh-cn/fortran-cn.html.markdown @@ -426,7 +426,6 @@ contains end function complex_abs end module fruity - ``` ### 更多资源 diff --git a/zh-cn/groovy-cn.html.markdown b/zh-cn/groovy-cn.html.markdown index 0e7a020c..f83dff02 100644 --- a/zh-cn/groovy-cn.html.markdown +++ b/zh-cn/groovy-cn.html.markdown @@ -11,7 +11,6 @@ lang: zh-cn Groovy - Java平台的动态语言。[了解更多。](http://www.groovy-lang.org/) ```groovy - /* 安装: @@ -394,8 +393,6 @@ int sum(int x, int y) { } assert sum(2,5) == 7 - - ``` ## 进阶资源 diff --git a/zh-cn/haskell-cn.html.markdown b/zh-cn/haskell-cn.html.markdown index d653c58c..57418ade 100644 --- a/zh-cn/haskell-cn.html.markdown +++ b/zh-cn/haskell-cn.html.markdown @@ -380,7 +380,6 @@ foo :: Integer What is your name? Friend! Hello, Friend! - ``` Haskell 还有许多内容,包括类型类 (typeclasses) 与 Monads。这些都是令 Haskell 编程非常有趣的好东西。我们最后给出 Haskell 的一个例子,一个快速排序的实现: diff --git a/zh-cn/html-cn.html.markdown b/zh-cn/html-cn.html.markdown index 6f60d5ce..ed8ff19d 100644 --- a/zh-cn/html-cn.html.markdown +++ b/zh-cn/html-cn.html.markdown @@ -107,7 +107,6 @@ HTML是超文本标记语言的缩写。 <td>第二行第二列</td> </tr> </table> - ``` ## 使用 diff --git a/zh-cn/java-cn.html.markdown b/zh-cn/java-cn.html.markdown index 53a423a8..c7046e5c 100644 --- a/zh-cn/java-cn.html.markdown +++ b/zh-cn/java-cn.html.markdown @@ -381,7 +381,6 @@ class PennyFarthing extends Bicycle { } } - ``` ## 更多阅读 diff --git a/zh-cn/jquery-cn.html.markdown b/zh-cn/jquery-cn.html.markdown index 4b23274e..3ac633d4 100644 --- a/zh-cn/jquery-cn.html.markdown +++ b/zh-cn/jquery-cn.html.markdown @@ -14,8 +14,6 @@ jQuery是JavaScript的一个函数库,它可以帮你“写更少,做更多 正因为jQuery是JavaScript的一个函数库,所以你需要[首先学习JavaScript](https://learnxinyminutes.com/docs/javascript/) ```js - - /////////////////////////////////// // 1. 选择器 @@ -126,6 +124,4 @@ var heights = []; $('p').each(function() { heights.push($(this).height()); // 把所有p标签的高度加入数组 }); - - ``` diff --git a/zh-cn/kotlin-cn.html.markdown b/zh-cn/kotlin-cn.html.markdown index f6dcd847..701363cf 100644 --- a/zh-cn/kotlin-cn.html.markdown +++ b/zh-cn/kotlin-cn.html.markdown @@ -335,7 +335,6 @@ object ObjectExample { return "hello" } } - ``` ### 进一步阅读 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 diff --git a/zh-cn/matlab-cn.html.markdown b/zh-cn/matlab-cn.html.markdown index bb1ab79a..b74b153f 100644 --- a/zh-cn/matlab-cn.html.markdown +++ b/zh-cn/matlab-cn.html.markdown @@ -495,7 +495,6 @@ median % 中位数 mean % 平均值 std % 标准差 perms(x) % x 元素的全排列 - ``` ## 相关资料 diff --git a/zh-cn/mips-cn.html.markdown b/zh-cn/mips-cn.html.markdown index 4f9ea7da..3db5387b 100644 --- a/zh-cn/mips-cn.html.markdown +++ b/zh-cn/mips-cn.html.markdown @@ -330,5 +330,4 @@ MIPS(Microprocessor without Interlocked Pipeline Stages)汇编语言是为 # 使用 include 语句可以将外部文件导入到程序中 # (它只是将文件中的代码放入 include 语句的位置) .include "somefile.asm" - ``` diff --git a/zh-cn/perl-cn.html.markdown b/zh-cn/perl-cn.html.markdown index 46c54618..432866df 100644 --- a/zh-cn/perl-cn.html.markdown +++ b/zh-cn/perl-cn.html.markdown @@ -134,8 +134,6 @@ sub logger { # 现在可以像内置函数一样调用子程序: logger("We have a logger subroutine!"); - - ``` #### 使用Perl模块 diff --git a/zh-cn/php-cn.html.markdown b/zh-cn/php-cn.html.markdown index 2def7f1c..2f95fc6f 100644 --- a/zh-cn/php-cn.html.markdown +++ b/zh-cn/php-cn.html.markdown @@ -622,7 +622,6 @@ use My\Namespace as SomeOtherNamespace; $cls = new SomeOtherNamespace\MyClass(); */ - ``` ## 更多阅读 diff --git a/zh-cn/pythonlegacy-cn.html.markdown b/zh-cn/pythonlegacy-cn.html.markdown index f8aa2332..d7d28d50 100644 --- a/zh-cn/pythonlegacy-cn.html.markdown +++ b/zh-cn/pythonlegacy-cn.html.markdown @@ -17,7 +17,6 @@ Python 由 Guido Van Rossum 在90年代初创建。 它现在是最流行的语 如果是Python 3,请在网络上寻找其他教程 ```python - # 单行注释 """ 多行字符串可以用 三个引号包裹,不过这也可以被当做 @@ -461,8 +460,6 @@ math.sqrt(16) == m.sqrt(16) # => True # 也可以通过下面的方法查看模块中有什么属性和方法 import math dir(math) - - ``` ## 更多阅读 diff --git a/zh-cn/r-cn.html.markdown b/zh-cn/r-cn.html.markdown index d576db29..4673e861 100644 --- a/zh-cn/r-cn.html.markdown +++ b/zh-cn/r-cn.html.markdown @@ -532,7 +532,6 @@ barplot(c(1,4,5,1,2), names.arg = c("red","blue","purple","green","yellow")) install.packages("ggplot2") require(ggplot2) ?ggplot2 - ``` ## 获得 R diff --git a/zh-cn/raylib-cn.html.markdown b/zh-cn/raylib-cn.html.markdown index c88aa91e..1306d3fb 100644 --- a/zh-cn/raylib-cn.html.markdown +++ b/zh-cn/raylib-cn.html.markdown @@ -139,7 +139,6 @@ int main(void) return 0; } - ``` ## 延伸阅读 diff --git a/zh-cn/red-cn.html.markdown b/zh-cn/red-cn.html.markdown index 7fee007e..9aa76a8b 100644 --- a/zh-cn/red-cn.html.markdown +++ b/zh-cn/red-cn.html.markdown @@ -188,7 +188,6 @@ print twice b ; 输出 6 ; 使用 #include 和 %文件名 来导入外部文件 #include %includefile.red ; 现在就可以使用 includefile.red 中的函数了。 - ``` ## 更进一步 diff --git a/zh-cn/sass-cn.html.markdown b/zh-cn/sass-cn.html.markdown index 985c6470..11500c70 100644 --- a/zh-cn/sass-cn.html.markdown +++ b/zh-cn/sass-cn.html.markdown @@ -21,8 +21,6 @@ Sass有两种不同的语法可选用。SCSS的语法和CSS的相同,但增加 如果你已熟悉CSS3,你可能相对能较快地掌握Sass。它并没有提供任何新的类型属性,而只是提供了一些工具使你能更高效的编写CSS,并且使维护更加容易。 ```scss - - // 单行注释当Sass被编译成CSS后会被删除。 /* 多行注释将保留. */ @@ -559,7 +557,6 @@ body { .gutter { width: 6.25%; } - ``` ## SASS还是Sass? diff --git a/zh-cn/scala-cn.html.markdown b/zh-cn/scala-cn.html.markdown index f3327b5b..e90a44ae 100644 --- a/zh-cn/scala-cn.html.markdown +++ b/zh-cn/scala-cn.html.markdown @@ -15,7 +15,6 @@ lang: zh-cn Scala - 一门可拓展的语言 ```scala - /* 自行设置: @@ -600,7 +599,6 @@ val writer = new PrintWriter("myfile.txt") writer.write("Writing line for line" + util.Properties.lineSeparator) writer.write("Another line here" + util.Properties.lineSeparator) writer.close() - ``` ## 更多的资源 diff --git a/zh-cn/sql-cn.html.markdown b/zh-cn/sql-cn.html.markdown index 9d430bd1..c1fad9a2 100644 --- a/zh-cn/sql-cn.html.markdown +++ b/zh-cn/sql-cn.html.markdown @@ -23,7 +23,6 @@ ions)](http://troels.arvin.dk/db/rdbms/)是一份很好的产品差 运行脚本的语法取决于你使用的SQL实现。通常是一个命令行工具。 ```sql - -- 注释以两个连字符开始。命令以分号结束。 -- SQL关键字大小写不敏感。在下文的示例命令中关键字大写, diff --git a/zh-cn/swift-cn.html.markdown b/zh-cn/swift-cn.html.markdown index 7955cc2b..4f07d845 100644 --- a/zh-cn/swift-cn.html.markdown +++ b/zh-cn/swift-cn.html.markdown @@ -603,5 +603,4 @@ var bar: Float = 20 foo <-> bar print("foo is \(foo), bar is \(bar)") // "foo is 20.0, bar is 10.0" - ``` diff --git a/zh-cn/tmux-cn.html.markdown b/zh-cn/tmux-cn.html.markdown index cf865dce..5734445e 100644 --- a/zh-cn/tmux-cn.html.markdown +++ b/zh-cn/tmux-cn.html.markdown @@ -16,7 +16,6 @@ lang: zh-cn 当你需要时,可以随时重新连接到这个终端。 ``` - tmux [command] # 运行一条命令 # 如果单独使用 'tmux' 而不指定某个命令,将会建立一个新的会话 @@ -50,7 +49,6 @@ lang: zh-cn -t "#" # 关闭指定的会话 -a # 关闭所有会话 -a -t "#" # 关闭除指定会话以外的所有会话 - ``` @@ -104,7 +102,6 @@ lang: zh-cn M-Up, M-Down # 改变当前窗格的大小,每按一次增减五个单位 M-Left, M-Right - ``` @@ -232,7 +229,6 @@ set -g status-left "#[fg=red] #H#[fg=green]:#[fg=white]#S#[fg=green] |#[default] # 需要用到 https://github.com/thewtex/tmux-mem-cpu-load set -g status-interval 4 set -g status-right "#[fg=green] | #[fg=white]#(tmux-mem-cpu-load)#[fg=green] | #[fg=cyan]%H:%M #[default]" - ``` diff --git a/zh-cn/typescript-cn.html.markdown b/zh-cn/typescript-cn.html.markdown index 5d6153da..4af7f783 100644 --- a/zh-cn/typescript-cn.html.markdown +++ b/zh-cn/typescript-cn.html.markdown @@ -168,7 +168,6 @@ let greeting = `Hi ${name}, how are you?`; // 有多行内容的模板字符串 let multiline = `This is an example of a multiline string`; - ``` ## 参考资料 diff --git a/zh-cn/visualbasic-cn.html.markdown b/zh-cn/visualbasic-cn.html.markdown index cda7b864..6ba91efe 100644 --- a/zh-cn/visualbasic-cn.html.markdown +++ b/zh-cn/visualbasic-cn.html.markdown @@ -262,7 +262,6 @@ Module Module1 End Sub End Module - ``` ## 参考 diff --git a/zh-cn/xml-cn.html.markdown b/zh-cn/xml-cn.html.markdown index bf0b074f..bf9c22dc 100644 --- a/zh-cn/xml-cn.html.markdown +++ b/zh-cn/xml-cn.html.markdown @@ -61,8 +61,6 @@ XML是一种标记语言,被设计用来存储数据和传输数据。 <!-- 下面, 一个有两个属性的元素--> <file type="gif" id="4293">computer.gif</file> - - ``` * 良好格式的文件 x 验证 @@ -75,7 +73,6 @@ XML是一种标记语言,被设计用来存储数据和传输数据。 有了这个工具,你能够在应用逻辑之外检查XML数据。 ```xml - <!-- 下面, 你能够看到一个简化版本的增加了DTD定义的bookstore文件。--> <?xml version="1.0" encoding="UTF-8"?> diff --git a/zh-cn/zfs-cn.html.markdown b/zh-cn/zfs-cn.html.markdown index 80688fbe..ce2d3f4d 100644 --- a/zh-cn/zfs-cn.html.markdown +++ b/zh-cn/zfs-cn.html.markdown @@ -117,7 +117,6 @@ errors: No known data errors Properties of zpools (存储池属性) ```bash - # 获取某一存储池的全部属性。属性可能是系统提供,也可能是用户设置 $ zpool get all zroot NAME PROPERTY VALUE SOURCE |