aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/tutorial
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-06-29 18:21:34 +0200
committerGravatar Marcel Hlopko <hlopko@google.com>2017-06-30 13:00:15 +0200
commit100a078f7741b8b8ac2da96b9b7285db871faa63 (patch)
tree05f45f1aa08908461c6c826be191598390afcf6e /site/docs/tutorial
parentd4e673ed93aa34dc20c3fb0d1a01f713cf6a7258 (diff)
Fix TOC in this topic. Our markdown doesn't use [TOC] to create a table of contents.
This change was verified with a local build. PiperOrigin-RevId: 160533900
Diffstat (limited to 'site/docs/tutorial')
-rw-r--r--site/docs/tutorial/cpp-use-cases.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/site/docs/tutorial/cpp-use-cases.md b/site/docs/tutorial/cpp-use-cases.md
index b0050091df..2b39bc56c9 100644
--- a/site/docs/tutorial/cpp-use-cases.md
+++ b/site/docs/tutorial/cpp-use-cases.md
@@ -11,7 +11,14 @@ with Bazel. If you have not done so already, get started with building C++
projects with Bazel by completing the tutorial
[Introduction to Bazel: Build a C++ Project](cpp.md).
-[TOC]
+## Contents
+
+* [Including multiple files in a target](#including-multiple-files-in-a-target)
+* [Using transitive includes](#using-transitive-includes)
+* [Adding include paths](#adding-include-paths)
+* [Including external libraries](#including-external-libraries)
+* [Writing and running C++ tests](#writing-and-running-c-tests)
+* [Adding dependencies on precompiled libraries](#adding-dependencies-on-precompiled-libraries)
## Including multiple files in a target