2014-02-20 19:04:08 -05:00
|
|
|
---
|
|
|
|
title: "Table of Contents"
|
|
|
|
date: "2013-07-09"
|
2014-05-27 18:32:57 -04:00
|
|
|
weight: 60
|
2014-04-23 03:00:11 -04:00
|
|
|
menu:
|
|
|
|
main:
|
|
|
|
parent: 'extras'
|
2014-05-27 18:32:57 -04:00
|
|
|
prev: "/extras/highlighting"
|
|
|
|
next: "/extras/urls"
|
2014-02-20 19:04:08 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
Hugo will automatically parse the markdown for your content and create
|
|
|
|
a Table of Contents you can use to guide readers to the sections within
|
2014-05-15 09:58:55 -04:00
|
|
|
your content.
|
2014-02-20 19:04:08 -05:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Simply create content like you normally would with the appropriate
|
2014-05-15 09:58:55 -04:00
|
|
|
headers.
|
2014-02-20 19:04:08 -05:00
|
|
|
|
|
|
|
Hugo will take this markdown and create a table of contents stored in the
|
|
|
|
[content variable](/layout/variables) .TableOfContents
|
|
|
|
|
|
|
|
|
|
|
|
## Template Example
|
|
|
|
|
|
|
|
This is example code of a [single.html template](/layout/content).
|
|
|
|
|
2014-05-27 18:32:57 -04:00
|
|
|
{{ template "partials/header.html" . }}
|
2014-02-20 19:04:08 -05:00
|
|
|
<div id="toc" class="well col-md-4 col-sm-6">
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
</div>
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ .Content }}
|
2014-05-27 18:32:57 -04:00
|
|
|
{{ template "partials/footer.html" . }}
|
2014-02-20 19:04:08 -05:00
|
|
|
|
|
|
|
|