From 9a2f9825d1afafe98ba13c95a74661363a8418eb Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Fri, 5 Sep 2014 16:33:32 +0100 Subject: [PATCH] Fix asciidoc syntax --- spring-boot-docs/src/main/asciidoc/howto.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index afcf5d7fd6..aa10d2eded 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -1400,7 +1400,8 @@ user detail store) it might be worth extracting the `GlobalAuthenticationConfigurerAdapter` (in the `init()` method so it happens before the authentication manager is needed elsewhere), e.g. -``` +[source,java,indent=0,subs="verbatim,quotes,attributes"] +---- @Configuration public class AuthenticationManagerConfiguration extends GlobalAuthenticationConfigurerAdapter { @@ -1409,7 +1410,7 @@ public class AuthenticationManagerConfiguration extends auth.inMemoryAuthentication() // ... etc. } } -``` +---- [[howto-enable-https]]