Skip to content

Commit c840d93

Browse files
committed
readme
1 parent 12c7a57 commit c840d93

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,23 @@ will be transformed into:
8383
```
8484
### Images
8585

86-
```
87-
![alt text](http://shuminsun.github.io/images/40.png "Logo Title Text 1")
86+
```markdown
87+
![alt text](https://avatars3.githubusercontent.com/u/12975088?v=3&s=40 "Logo Title")
8888
```
8989
will be transformed into:
90-
```
91-
<img src="https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png" title="&quot;Logo Title Text 1&quot;" alt="alt text" />
90+
```html
91+
<img src="https://avatars3.githubusercontent.com/u/12975088?v=3&s=40" title="Logo Title" alt="alt text" />
9292
```
9393
### Code
9494

95-
<pre>
95+
<pre class="lang-markdown">
9696
```
9797
var s = "JavaScript syntax highlighting";
9898
alert(s);
9999
```
100100
</pre>
101101

102+
will be transformed into:
102103
```
103104
<pre class="lang-javascript">
104105
var s = &quot;JavaScript syntax highlighting&quot;;
@@ -108,7 +109,7 @@ alert(s);
108109

109110
### Table
110111

111-
```
112+
```markdown
112113
| Tables | Are | Cool |
113114
| ------------- |:-------------:| -----:|
114115
| col 3 is | right-aligned | $1600 |
@@ -118,7 +119,7 @@ alert(s);
118119

119120
will be transformed into:
120121

121-
```
122+
```html
122123
<table><tr><th> Tables </th><th> Are </th><th style="text-align: center;"> Cool </th></tr><tr><td> col 3 is </td><td> right-aligned </td><td style="text-align: center;"> $1600 </td></tr><tr><td> col 2 is </td><td> centered </td><td style="text-align: center;"> $12 </td></tr><tr><td> zebra stripes </td><td> are neat </td><td style="text-align: center;"> $1 </td></tr></table><p>The outer pipes (|) are optional, and you don&#39;t need to make the raw Markdown line up prettily. You can also use inline Markdown.<br/></p>
123124
```
124125

0 commit comments

Comments
 (0)