summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2014-09-10 16:23:39 -0500
committerLevi Bostian <levi.bostian@gmail.com>2014-09-10 16:23:39 -0500
commite8735050ac5f741aa6c9382c1b5bd3d0a16bc4bc (patch)
tree1e0577e75af1e93afcd42076620beaad5091edae
parent4b63f7bf3897300cbc5075a414cd8acc58f49b49 (diff)
parentc9f6a959307ee4e7766456f015c0ce1482a34e8a (diff)
Merge pull request #754 from m90/master
[markdown/en] clarify strikethrough text and fix alt-attribute claims
-rw-r--r--markdown.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/markdown.html.markdown b/markdown.html.markdown
index 805255b8..3d4d0af6 100644
--- a/markdown.html.markdown
+++ b/markdown.html.markdown
@@ -39,7 +39,7 @@ This is an h2
-------------
<!-- Simple text styles -->
-<!-- Text can be easily styled as italic, bold, or strikethrough using markdown -->
+<!-- Text can be easily styled as italic or bold using markdown -->
*This text is in italics.*
_And so is this text._
@@ -52,7 +52,7 @@ __And so is this text.__
*__And this!__*
<!-- In Github Flavored Markdown, which is used to render markdown files on
-Github, we also have: -->
+Github, we also have strikethrough: -->
~~This text is rendered with strikethrough.~~
@@ -201,11 +201,11 @@ can be anything so long as they are unique. -->
<!-- Images -->
<!-- Images are done the same way as links but with an exclamation point in front! -->
-![This is hover-text (alt text) 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")
<!-- And reference style works as expected -->
-![This is the hover-text.][myimage]
+![This is the alt-attribute.][myimage]
[myimage]: relative/urls/cool/image.jpg "if you need a title, it's here"