Fix Link that is Code Styling

Closes gh-8038
This commit is contained in:
Rob Winch 2020-02-28 13:52:43 -06:00
parent 562c1d939e
commit bc16f1a526
2 changed files with 14 additions and 0 deletions

View File

@ -4,6 +4,15 @@ apply plugin: 'io.spring.convention.dependency-set'
apply plugin: 'io.spring.convention.repository'
apply plugin: 'java'
asciidoctor {
attributes([stylesheet: 'css/style.css'])
resources {
from(sourceDir) {
include "css/**"
}
}
}
asciidoctorj {
def ghTag = snapshotBuild ? 'master' : project.version
def ghUrl = "https://github.com/spring-projects/spring-security/tree/$ghTag"

View File

@ -0,0 +1,5 @@
@import 'spring.css';
a code {
color: #097dff;
}