mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
40 lines
1.1 KiB
Markdown
40 lines
1.1 KiB
Markdown
{
|
|
"title": "Example Content File",
|
|
"Pubdate": "2013-07-01"
|
|
}
|
|
|
|
Somethings are better shown than explained. The following is a very basic example of a content file:
|
|
|
|
**mysite/project/nitro.md <- http://mysite.com/project/nitro.html**
|
|
|
|
{
|
|
"Title": "Nitro : A quick and simple profiler for golang",
|
|
"Description": "",
|
|
"Keywords": [ "Development", "golang", "profiling" ],
|
|
"Tags": [ "Development", "golang", "profiling" ],
|
|
"Pubdate": "2013-06-19",
|
|
"Topics": [ "Development", "GoLang" ],
|
|
"Slug": "nitro",
|
|
"project_url": "http://github.com/spf13/nitro"
|
|
}
|
|
|
|
# Nitro
|
|
|
|
Quick and easy performance analyzer library for golang.
|
|
|
|
## Overview
|
|
|
|
Nitro is a quick and easy performance analyzer library for golang.
|
|
It is useful for comparing A/B against different drafts of functions
|
|
or different functions.
|
|
|
|
## Implementing Nitro
|
|
|
|
Using Nitro is simple. First use go get to install the latest version
|
|
of the library.
|
|
|
|
$ go get github.com/spf13/nitro
|
|
|
|
Next include nitro in your application.
|
|
|
|
|