Assorted fixes

This commit is contained in:
Adam Bard 2018-03-04 19:48:44 -08:00
parent 3fb608100a
commit caa8993076
8 changed files with 36 additions and 36 deletions

View File

@ -16,7 +16,7 @@ popular and recent book is [Land of Lisp](http://landoflisp.com/). A new book ab
```common_lisp ```common-lisp
;;;----------------------------------------------------------------------------- ;;;-----------------------------------------------------------------------------
;;; 0. Syntax ;;; 0. Syntax

View File

@ -14,7 +14,7 @@ Syntax, in der sich Dokumente leicht schreiben *und* lesen lassen. Außerdem
sollte Markdown sich leicht nach HTML (und in andere Formate) konvertieren sollte Markdown sich leicht nach HTML (und in andere Formate) konvertieren
lassen. lassen.
```markdown ```md
<!-- Markdown ist eine Obermenge von HTML - jede valide HTML-Datei ist also <!-- Markdown ist eine Obermenge von HTML - jede valide HTML-Datei ist also
automatisch valides Markdown - was heisst dass wir jedes HTML-Element (also auch automatisch valides Markdown - was heisst dass wir jedes HTML-Element (also auch
Kommentare) in Markdown benutzen können, ohne dass der Parser sie verändert. Kommentare) in Markdown benutzen können, ohne dass der Parser sie verändert.
@ -253,4 +253,4 @@ Ganz schön hässlich | vielleicht doch lieber | wieder aufhören
Mehr Informationen gibt es in [John Gruber's offiziellem Blog-Post](http://daringfireball.net/projects/markdown/syntax) Mehr Informationen gibt es in [John Gruber's offiziellem Blog-Post](http://daringfireball.net/projects/markdown/syntax)
und bei Adam Pritchards [grandiosem Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet). und bei Adam Pritchards [grandiosem Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).
Infos zu GitHub Flavored Markdown [gibt es hier](https://help.github.com/articles/github-flavored-markdown). Infos zu GitHub Flavored Markdown [gibt es hier](https://help.github.com/articles/github-flavored-markdown).

View File

@ -14,7 +14,7 @@ Faites moi autant de retours que vous voulez! Sentez vous libre de "forker"
et envoyer des pull request! et envoyer des pull request!
```markdown ```md
<!-- Markdown est une sorte de cousin du HTML, si bien que tout document HTML <!-- Markdown est une sorte de cousin du HTML, si bien que tout document HTML
est un document Markdown valide. Autrement dit, vous pouvez utiliser des est un document Markdown valide. Autrement dit, vous pouvez utiliser des
balises HTML dans un fichier Markdown, comme la balise commentaire dans balises HTML dans un fichier Markdown, comme la balise commentaire dans

View File

@ -29,7 +29,7 @@ specific to a certain parser.
## HTML Elements ## HTML Elements
Markdown is a superset of HTML, so any HTML file is valid Markdown. Markdown is a superset of HTML, so any HTML file is valid Markdown.
```markdown ```md
<!--This means we can use HTML elements in Markdown, such as the comment <!--This means we can use HTML elements in Markdown, such as the comment
element, and they won't be affected by a markdown parser. However, if you element, and they won't be affected by a markdown parser. However, if you
create an HTML element in your markdown file, you cannot use markdown syntax create an HTML element in your markdown file, you cannot use markdown syntax
@ -41,7 +41,7 @@ within that element's contents.-->
You can create HTML elements `<h1>` through `<h6>` easily by prepending the You can create HTML elements `<h1>` through `<h6>` easily by prepending the
text you want to be in that element by a number of hashes (#). text you want to be in that element by a number of hashes (#).
```markdown ```md
# This is an <h1> # This is an <h1>
## This is an <h2> ## This is an <h2>
### This is an <h3> ### This is an <h3>
@ -51,7 +51,7 @@ text you want to be in that element by a number of hashes (#).
``` ```
Markdown also provides us with two alternative ways of indicating h1 and h2. Markdown also provides us with two alternative ways of indicating h1 and h2.
```markdown ```md
This is an h1 This is an h1
============= =============
@ -63,7 +63,7 @@ This is an h2
Text can be easily styled as italic or bold using markdown. Text can be easily styled as italic or bold using markdown.
```markdown ```md
*This text is in italics.* *This text is in italics.*
_And so is this text._ _And so is this text._
@ -78,7 +78,7 @@ __And so is this text.__
In GitHub Flavored Markdown, which is used to render markdown files on In GitHub Flavored Markdown, which is used to render markdown files on
GitHub, we also have strikethrough: GitHub, we also have strikethrough:
```markdown ```md
~~This text is rendered with strikethrough.~~ ~~This text is rendered with strikethrough.~~
``` ```
## Paragraphs ## Paragraphs
@ -86,7 +86,7 @@ GitHub, we also have strikethrough:
Paragraphs are a one or multiple adjacent lines of text separated by one or Paragraphs are a one or multiple adjacent lines of text separated by one or
multiple blank lines. multiple blank lines.
```markdown ```md
This is a paragraph. I'm typing in a paragraph isn't this fun? This is a paragraph. I'm typing in a paragraph isn't this fun?
Now I'm in paragraph 2. Now I'm in paragraph 2.
@ -99,7 +99,7 @@ I'm in paragraph three!
Should you ever want to insert an HTML `<br />` tag, you can end a paragraph Should you ever want to insert an HTML `<br />` tag, you can end a paragraph
with two or more spaces and then begin a new paragraph. with two or more spaces and then begin a new paragraph.
```markdown ```md
I end with two spaces (highlight me to see them). I end with two spaces (highlight me to see them).
There's a <br /> above me! There's a <br /> above me!
@ -107,7 +107,7 @@ There's a <br /> above me!
Block quotes are easy and done with the > character. Block quotes are easy and done with the > character.
```markdown ```md
> This is a block quote. You can either > This is a block quote. You can either
> manually wrap your lines and put a `>` before every line or you can let your lines get really long and wrap on their own. > manually wrap your lines and put a `>` before every line or you can let your lines get really long and wrap on their own.
> It doesn't make a difference so long as they start with a `>`. > It doesn't make a difference so long as they start with a `>`.
@ -121,7 +121,7 @@ Block quotes are easy and done with the > character.
## Lists ## Lists
Unordered lists can be made using asterisks, pluses, or hyphens. Unordered lists can be made using asterisks, pluses, or hyphens.
```markdown ```md
* Item * Item
* Item * Item
* Another item * Another item
@ -141,7 +141,7 @@ or
Ordered lists are done with a number followed by a period. Ordered lists are done with a number followed by a period.
```markdown ```md
1. Item one 1. Item one
2. Item two 2. Item two
3. Item three 3. Item three
@ -150,7 +150,7 @@ Ordered lists are done with a number followed by a period.
You don't even have to label the items correctly and Markdown will still You don't even have to label the items correctly and Markdown will still
render the numbers in order, but this may not be a good idea. render the numbers in order, but this may not be a good idea.
```markdown ```md
1. Item one 1. Item one
1. Item two 1. Item two
1. Item three 1. Item three
@ -159,7 +159,7 @@ render the numbers in order, but this may not be a good idea.
You can also use sublists You can also use sublists
```markdown ```md
1. Item one 1. Item one
2. Item two 2. Item two
3. Item three 3. Item three
@ -170,7 +170,7 @@ You can also use sublists
There are even task lists. This creates HTML checkboxes. There are even task lists. This creates HTML checkboxes.
```markdown ```md
Boxes below without the 'x' are unchecked HTML checkboxes. Boxes below without the 'x' are unchecked HTML checkboxes.
- [ ] First task to complete. - [ ] First task to complete.
- [ ] Second task that needs done - [ ] Second task that needs done
@ -183,7 +183,7 @@ This checkbox below will be a checked HTML checkbox.
You can indicate a code block (which uses the `<code>` element) by indenting You can indicate a code block (which uses the `<code>` element) by indenting
a line with four spaces or a tab. a line with four spaces or a tab.
```markdown ```md
This is code This is code
So is this So is this
``` ```
@ -191,7 +191,7 @@ a line with four spaces or a tab.
You can also re-tab (or add an additional four spaces) for indentation You can also re-tab (or add an additional four spaces) for indentation
inside your code inside your code
```markdown ```md
my_array.each do |item| my_array.each do |item|
puts item puts item
end end
@ -199,7 +199,7 @@ inside your code
Inline code can be created using the backtick character ` Inline code can be created using the backtick character `
```markdown ```md
John didn't even know what the `go_to()` function did! John didn't even know what the `go_to()` function did!
``` ```
@ -220,7 +220,7 @@ highlighting of the language you specify after the \`\`\`
Horizontal rules (`<hr/>`) are easily added with three or more asterisks or Horizontal rules (`<hr/>`) are easily added with three or more asterisks or
hyphens, with or without spaces. hyphens, with or without spaces.
```markdown ```md
*** ***
--- ---
- - - - - -
@ -232,17 +232,17 @@ hyphens, with or without spaces.
One of the best things about markdown is how easy it is to make links. Put One of the best things about markdown is how easy it is to make links. Put
the text to display in hard brackets [] followed by the url in parentheses () the text to display in hard brackets [] followed by the url in parentheses ()
```markdown ```md
[Click me!](http://test.com/) [Click me!](http://test.com/)
``` ```
You can also add a link title using quotes inside the parentheses. You can also add a link title using quotes inside the parentheses.
```markdown ```md
[Click me!](http://test.com/ "Link to Test.com") [Click me!](http://test.com/ "Link to Test.com")
``` ```
Relative paths work too. Relative paths work too.
```markdown ```md
[Go to music](/music/). [Go to music](/music/).
``` ```
@ -269,7 +269,7 @@ But it's not that commonly used.
## Images ## Images
Images are done the same way as links but with an exclamation point in front! Images are done the same way as links but with an exclamation point in front!
```markdown ```md
![This is the alt-attribute for my image](http://imgur.com/myimage.jpg "An optional title") ![This is the alt-attribute for my image](http://imgur.com/myimage.jpg "An optional title")
``` ```
@ -281,20 +281,20 @@ And reference style works as expected.
## Miscellany ## Miscellany
### Auto-links ### Auto-links
```markdown ```md
<http://testwebsite.com/> is equivalent to <http://testwebsite.com/> is equivalent to
[http://testwebsite.com/](http://testwebsite.com/) [http://testwebsite.com/](http://testwebsite.com/)
``` ```
### Auto-links for emails ### Auto-links for emails
```markdown ```md
<foo@bar.com> <foo@bar.com>
``` ```
### Escaping characters ### Escaping characters
```markdown ```md
I want to type *this text surrounded by asterisks* but I don't want it to be I want to type *this text surrounded by asterisks* but I don't want it to be
in italics, so I do this: \*this text surrounded by asterisks\*. in italics, so I do this: \*this text surrounded by asterisks\*.
``` ```
@ -304,7 +304,7 @@ in italics, so I do this: \*this text surrounded by asterisks\*.
In GitHub Flavored Markdown, you can use a `<kbd>` tag to represent keyboard In GitHub Flavored Markdown, you can use a `<kbd>` tag to represent keyboard
keys. keys.
```markdown ```md
Your computer crashed? Try sending a Your computer crashed? Try sending a
<kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Del</kbd> <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Del</kbd>
``` ```
@ -313,7 +313,7 @@ Your computer crashed? Try sending a
Tables are only available in GitHub Flavored Markdown and are slightly Tables are only available in GitHub Flavored Markdown and are slightly
cumbersome, but if you really want it: cumbersome, but if you really want it:
```markdown ```md
| Col1 | Col2 | Col3 | | Col1 | Col2 | Col3 |
| :----------- | :------: | ------------: | | :----------- | :------: | ------------: |
| Left-aligned | Centered | Right-aligned | | Left-aligned | Centered | Right-aligned |
@ -321,7 +321,7 @@ cumbersome, but if you really want it:
``` ```
or, for the same results or, for the same results
```markdown ```md
Col 1 | Col2 | Col3 Col 1 | Col2 | Col3
:-- | :-: | --: :-- | :-: | --:
Ugh this is so ugly | make it | stop Ugh this is so ugly | make it | stop

View File

@ -19,7 +19,7 @@ Outro livro recente e popular é o
[Land of Lisp](http://landoflisp.com/). [Land of Lisp](http://landoflisp.com/).
```common_lisp ```common-lisp
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; 0. Sintaxe ;;; 0. Sintaxe

View File

@ -5,7 +5,7 @@ contributors:
filename: learnvisualbasic.vb filename: learnvisualbasic.vb
--- ---
```vb ```vbnet
Module Module1 Module Module1
Sub Main() Sub Main()

View File

@ -13,7 +13,7 @@ Markdown 由 John Gruber 于 2004年创立. 它旨在成为一门容易读写的
欢迎您多多反馈以及分支和请求合并。 欢迎您多多反馈以及分支和请求合并。
```markdown ```md
<!-- Markdown 是 HTML 的父集,所以任何 HTML 文件都是有效的 Markdown。 <!-- Markdown 是 HTML 的父集,所以任何 HTML 文件都是有效的 Markdown。
这意味着我们可以在 Markdown 里使用任何 HTML 元素,比如注释元素, 这意味着我们可以在 Markdown 里使用任何 HTML 元素,比如注释元素,
且不会被 Markdown 解析器所影响。不过如果你在 Markdown 文件内创建了 HTML 元素, 且不会被 Markdown 解析器所影响。不过如果你在 Markdown 文件内创建了 HTML 元素,

View File

@ -5,10 +5,10 @@ contributors:
translators: translators:
- ["Abner Chou", "http://cn.abnerchou.me"] - ["Abner Chou", "http://cn.abnerchou.me"]
lang: zh-cn lang: zh-cn
filename: learnvisualbasic.vb-cn filename: learnvisualbasic-cn.vb
--- ---
```vb ```vbnet
Module Module1 Module Module1
Sub Main() Sub Main()