mirror of
https://github.com/octoleo/restic.git
synced 2024-11-14 01:04:05 +00:00
31 lines
346 B
Markdown
31 lines
346 B
Markdown
|
This template is for testing snipmd.awk.
|
||
|
|
||
|
Put the first snippet here.
|
||
|
|
||
|
[snip]:# (first)
|
||
|
```go
|
||
|
fmt.Println("hello")
|
||
|
x := ...
|
||
|
```
|
||
|
|
||
|
And now the second.
|
||
|
[snip]:# (second)
|
||
|
```go
|
||
|
if x > 2 {
|
||
|
...
|
||
|
}
|
||
|
```
|
||
|
|
||
|
A top-level snippet.
|
||
|
|
||
|
[snip]:# (top-level)
|
||
|
```go
|
||
|
var ErrBad = errors.New("bad")
|
||
|
```
|
||
|
|
||
|
```go
|
||
|
// A code block that is not included.
|
||
|
```
|
||
|
|
||
|
And we're done.
|