From b43007d804f3e62d5b6973235998e7fea218b3c7 Mon Sep 17 00:00:00 2001 From: spencergibb Date: Wed, 13 Sep 2023 16:12:31 -0400 Subject: [PATCH] Fix indentation for all pages --- docs/modules/ROOT/pages/README.adoc | 12 ++++++------ docs/modules/ROOT/pages/appendix.adoc | 2 +- docs/modules/ROOT/pages/quickstart.adoc | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/modules/ROOT/pages/README.adoc b/docs/modules/ROOT/pages/README.adoc index 8e43fa54..74bc564d 100644 --- a/docs/modules/ROOT/pages/README.adoc +++ b/docs/modules/ROOT/pages/README.adoc @@ -4,12 +4,12 @@ image::https://codecov.io/gh/spring-cloud/spring-cloud-consul/branch/master/grap include::intro.adoc[] [[quick-start]] -== Quick Start += Quick Start include::quickstart.adoc[] [[consul-overview]] -== Consul overview += Consul overview Features of Consul @@ -23,7 +23,7 @@ Features of Consul See the https://consul.io/intro/index.html[intro] for more information. [[spring-cloud-consul-features]] -== Spring Cloud Consul Features += Spring Cloud Consul Features * Spring Cloud `DiscoveryClient` implementation ** supports Spring Cloud Gateway @@ -32,7 +32,7 @@ See the https://consul.io/intro/index.html[intro] for more information. * Spring Cloud Bus implementation based on Consul https://www.consul.io/docs/agent/http/event.html[events] [[running-the-sample]] -== Running the sample += Running the sample 1. Run `docker-compose up` 2. Verify consul is running by visiting http://localhost:8500 @@ -43,11 +43,11 @@ See the https://consul.io/intro/index.html[intro] for more information. 7. visit http://localhost:8080 again, verify that `{"serviceId":":8081","host":"","port":8081}` eventually shows up in the results in a round robbin fashion (may take a minute or so). [[building]] -== Building += Building include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/building-jdk8.adoc[] [[contributing]] -== Contributing += Contributing include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/contributing.adoc[] diff --git a/docs/modules/ROOT/pages/appendix.adoc b/docs/modules/ROOT/pages/appendix.adoc index 39eb1593..941e773b 100644 --- a/docs/modules/ROOT/pages/appendix.adoc +++ b/docs/modules/ROOT/pages/appendix.adoc @@ -1,7 +1,7 @@ :numbered!: [appendix] [[common-application-properties]] -== Common application properties += Common application properties include::_attributes.adoc[] diff --git a/docs/modules/ROOT/pages/quickstart.adoc b/docs/modules/ROOT/pages/quickstart.adoc index df2822e9..d7a0b779 100644 --- a/docs/modules/ROOT/pages/quickstart.adoc +++ b/docs/modules/ROOT/pages/quickstart.adoc @@ -3,7 +3,7 @@ This quick start walks through using Spring Cloud Consul for Service Discovery a First, run Consul Agent on your machine. Then you can access it and use it as a Service Registry and Configuration source with Spring Cloud Consul. [[discovery-client-usage]] -=== Discovery Client Usage += Discovery Client Usage To use these features in an application, you can build it as a Spring Boot application that depends on `spring-cloud-consul-core`. The most convenient way to add the dependency is with a Spring Boot starter: `org.springframework.cloud:spring-cloud-starter-consul-discovery`. @@ -127,7 +127,7 @@ public String serviceUrl() { ---- [[distributed-configuration-usage]] -=== Distributed Configuration Usage += Distributed Configuration Usage To use these features in an application, you can build it as a Spring Boot application that depends on `spring-cloud-consul-core` and `spring-cloud-consul-config`. The most convenient way to add the dependency is with a Spring Boot starter: `org.springframework.cloud:spring-cloud-starter-consul-config`.