shithub: hugo

ref: d1c500c124e97fb278f484653a1149596da7a0c5
dir: /docs/content/content/example.md/

View raw version
---
title: "Example Content File"
date: "2013-07-01"
aliases: ["/doc/example/"]
linktitle: "Example"
groups: ['content']
groups_weight: 50
notoc: true
---

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**

{{% highlight yaml %}}
---
Title:       "Nitro : A quick and simple profiler for Go"
Description: "Nitro is a simple profiler for you go lang applications"
Tags:        [ "Development", "Go", "profiling" ]
date:        "2013-06-19"
Topics:      [ "Development", "Go" ]
Slug:        "nitro"
project_url: "http://github.com/spf13/nitro"
---

# Nitro

Quick and easy performance analyzer library for Go.

## Overview

Nitro is a quick and easy performance analyzer library for Go.
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.

{{% /highlight %}}