Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yosssi committed Feb 25, 2014
1 parent 311e99c commit a7df74a
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,48 @@ func main() {
http.ListenAndServe(":8080", nil)
}
```

## Syntax

### Creating Simple Tags

```gold
div
address
i
strong
```

becomes

```html
<div>
<address></address>
<i></i>
<strong></strong>
</div>
```

### Putting Texts Inside Tags

```gold
p Welcome to Gold
p
| You can insert single text.
p.
You can insert
multiple texts.
```

becomes

```html
<p>Welcome to Gold</p>
<p>You can insert single text.</p>
<p>
You can insert
multiple texts.
</p>
```

## APIs

0 comments on commit a7df74a

Please sign in to comment.