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