diff options
author | Adam <adam@adambard.com> | 2014-09-11 16:17:21 +0200 |
---|---|---|
committer | Adam <adam@adambard.com> | 2014-09-11 16:17:21 +0200 |
commit | a7c89acfcf2eb1cd5e172b8f3d5fabccabcd2003 (patch) | |
tree | 65257f3b763b9dddde6d3ecc264d06b06cc4cc74 /markdown.html.markdown | |
parent | 3addfcf7148c8da62c3523de7fff7ea55d31084a (diff) | |
parent | 6c0018c4b7457e0bf9873627af366b349b194637 (diff) |
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'markdown.html.markdown')
-rw-r--r-- | markdown.html.markdown | 8 |
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" |