grunt-init-assemble
Version:
Initialize new Assemble projects.
34 lines (21 loc) • 437 B
Markdown
## Links
### Basic link
``` markdown
[Assemble](http://assemble.io)
```
Renders to:
[Assemble](http://assemble.io)
HTML:
``` html
<a href="http://assemble.io">Assemble</a>
```
### Add a title
``` markdown
[Upstage](https://github.com/upstage/ "Visit Upstage!")
```
Renders to:
[Upstage](https://github.com/upstage/ "Visit Upstage!")
HTML:
``` html
<a href="https://github.com/upstage/" title="Visit Upstage!">Upstage</a>
```