Skip to content

Commit

Permalink
Fix TOC indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylogic committed Jul 1, 2019
1 parent c0e5026 commit e4507e0
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 37 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

<!-- MarkdownTOC autolink="true" levels="1,2" -->
<!-- MarkdownTOC autolink="true" levels="1,2" indent=" " -->

- [0.3.0-dev](#030-dev)
- [0.2.0](#020)
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code of Conduct

<!-- MarkdownTOC autolink="true" style="ordered" -->
<!-- MarkdownTOC autolink="true" style="ordered" indent=" " -->

1. [Our Pledge](#our-pledge)
1. [Our Standards](#our-standards)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ First, thank you for contributing to Vector! We know how important a
strong community is to open source and we welcome anyone that is willing
to particpate.

<!-- MarkdownTOC autolink="true" style="ordered" -->
<!-- MarkdownTOC autolink="true" style="ordered" indent=" " -->

1. [Prerequisites](#prerequisites)
1. [Workflow](#workflow)
Expand Down
6 changes: 3 additions & 3 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

This document covers the basics of developing in Vector. In this document:

<!-- MarkdownTOC autolink="true" style="ordered" -->
<!-- MarkdownTOC autolink="true" style="ordered" indent=" " -->

1. [Prerequisites](#prerequisites)
1. [Setup](#setup)
1. [Directory Structure](#directory-structure)
1. [Makefile](#makefile)
1. [Testing](#testing)
1. [Docker](#docker)
1. [Sample Logs](#sample-logs)
1. [Docker](#docker)
1. [Sample Logs](#sample-logs)
1. [Benchmarking](#benchmarking)
1. [Building](#building)
1. [Testing](#testing-1)
Expand Down
50 changes: 25 additions & 25 deletions DOCUMENTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,36 @@
This document covers the basics of writing documentation within Vector.
In this document:

<!-- MarkdownTOC autolink="true" style="ordered" -->
<!-- MarkdownTOC autolink="true" style="ordered" indent=" " -->

1. [Prerequisites](#prerequisites)
1. [How It Works](#how-it-works)
1. [Making Changes](#making-changes)
1. [Conventions](#conventions)
1. [Syntax](#syntax)
1. [Lists](#lists)
1. [Required Variable](#required-variable)
1. [Optional Variable](#optional-variable)
1. [At Least One Variable Required](#at-least-one-variable-required)
1. [Style](#style)
1. [Configuration Examples](#configuration-examples)
1. [Headings](#headings)
1. [Images](#images)
1. [JSON](#json)
1. [Links](#links)
1. [Options](#options)
1. [Structure](#structure)
1. [Guides](#guides)
1. [Sources, Transforms, & Sinks](#sources-transforms--sinks)
1. [Heading](#heading)
1. [Section Hierarchy](#section-hierarchy)
1. [Language](#language)
1. [Factual Tone](#factual-tone)
1. [Second Person Narrative](#second-person-narrative)
1. [Present Tense](#present-tense)
1. [Best Practices](#best-practices)
1. [Link](#link)
1. [Shallow Scope](#shallow-scope)
1. [Syntax](#syntax)
1. [Lists](#lists)
1. [Required Variable](#required-variable)
1. [Optional Variable](#optional-variable)
1. [At Least One Variable Required](#at-least-one-variable-required)
1. [Style](#style)
1. [Configuration Examples](#configuration-examples)
1. [Headings](#headings)
1. [Images](#images)
1. [JSON](#json)
1. [Links](#links)
1. [Options](#options)
1. [Structure](#structure)
1. [Guides](#guides)
1. [Sources, Transforms, & Sinks](#sources-transforms--sinks)
1. [Heading](#heading)
1. [Section Hierarchy](#section-hierarchy)
1. [Language](#language)
1. [Factual Tone](#factual-tone)
1. [Second Person Narrative](#second-person-narrative)
1. [Present Tense](#present-tense)
1. [Best Practices](#best-practices)
1. [Link](#link)
1. [Shallow Scope](#shallow-scope)

<!-- /MarkdownTOC -->

Expand Down
6 changes: 3 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ This document will cover how to properly release Vector.
Vector adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) and the release
process is dependent on the version change.

<!-- MarkdownTOC autolink="true" style="ordered" -->
<!-- MarkdownTOC autolink="true" style="ordered" indent=" " -->

1. [Quick Start](#quick-start)
1. [Patch Releases](#patch-releases)
1. [Major/Minor Releases](#majorminor-releases)
1. [Patch Releases](#patch-releases)
1. [Major/Minor Releases](#majorminor-releases)

<!-- /MarkdownTOC -->

Expand Down
7 changes: 4 additions & 3 deletions docs/setup/installation/platforms/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@ The default Vector configuration file is placed at:
etc/vector/vector.toml
```

A full spec is located at `/etc/vector/vector.spec.toml` and examples are
located in `/etc/vector/examples/*`. You an customize the configuration by
your custom `vector.toml` file in the expected location:
You an customize Vector's configuration by mounting your custom `vector.toml`
file in the expected location:

```bash
docker run -v $PWD/vector.toml:/etc/vector/vector.toml:ro timberio/vector:latest
```

Modify `$PWD` to the directory where you store your local `vector.toml` file.

Once logged in, [start][docs.starting] Vector with:

```bash
Expand Down

0 comments on commit e4507e0

Please sign in to comment.