summaryrefslogtreecommitdiffhomepage
path: root/markdown.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'markdown.html.markdown')
-rw-r--r--markdown.html.markdown29
1 files changed, 15 insertions, 14 deletions
diff --git a/markdown.html.markdown b/markdown.html.markdown
index 60ca1323..fefb60f6 100644
--- a/markdown.html.markdown
+++ b/markdown.html.markdown
@@ -40,9 +40,9 @@ specific to a certain parser.
Markdown is a superset of HTML, so any HTML file is valid Markdown.
```md
-<!--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
-create an HTML element in your markdown file, you cannot use markdown syntax
+<!--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
+create an HTML element in your markdown file, you cannot use markdown syntax
within that element's contents.-->
```
@@ -169,9 +169,9 @@ render the numbers in order, but this may not be a good idea.
1. Item three
```
-(This renders the same as the above example)
+(This renders the same as the example above.)
-You can also use sublists
+You can also use sublists.
```md
1. Item one
@@ -203,7 +203,7 @@ a line with four spaces or a tab.
```
You can also re-tab (or add an additional four spaces) for indentation
-inside your code
+inside your code.
```md
my_array.each do |item|
@@ -211,13 +211,13 @@ inside your code
end
```
-Inline code can be created using the backtick character `` ` ``
+Inline code can be created using the backtick character `` ` ``.
```md
John didn't even know what the `go_to()` function did!
```
-In GitHub Flavored Markdown, you can use a special syntax for code
+In GitHub Flavored Markdown, you can use a special syntax for code.
<pre>
<code class="highlight">&#x60;&#x60;&#x60;ruby
@@ -227,7 +227,7 @@ end
&#x60;&#x60;&#x60;</code></pre>
The above text doesn't require indenting, plus GitHub will use syntax
-highlighting of the language you specify after the \`\`\`
+highlighting of the language you specify after the opening <code>```</code>.
## Horizontal rule
@@ -278,7 +278,7 @@ There is also "implicit naming" which lets you use the link text as the id.
<pre><code class="highlight">&#x5b;<span class="nv">This</span>][] is a link.
-&#x5b;<span class="nv">this</span>]: <span class="sx">http://thisisalink.com/</span></code></pre>
+&#x5b;<span class="nv">This</span>]: <span class="sx">http://thisisalink.com/</span></code></pre>
But it's not that commonly used.
@@ -298,7 +298,7 @@ omitted though.)
- [Subchapter <h3 />](#subchapter-h3-)
```
-Nontheless, this is a feature that might not be working in all Markdown
+Nonetheless, this is a feature that might not be working in all Markdown
implementations the same way.
## Images
@@ -370,9 +370,10 @@ Ugh this is so ugly | make it | stop
## Markdownlint
In order to simplify work with Markdown and to unify its coding style,
-`Markdownlint` has been created. This tool is available also as a plugin for
-some IDEs and can be used as an utility to ensure validity and readability of
-Markdown.
+`Markdownlint` has been created. Available as a
+[separate tool](https://github.com/markdownlint/markdownlint)
+as well as a plugin for some IDEs, it can be used to ensure validity and
+readability of Markdown.
---