Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jlstrater/f0b2f16e17e940b9f321783b51c7b347 to your computer and use it in GitHub Desktop.
Save jlstrater/f0b2f16e17e940b9f321783b51c7b347 to your computer and use it in GitHub Desktop.
The Asciidoctor Processor we use to create the side-by-side Groovy/Kotlin tabs in the Gradle docs and guides
/*
* Copyright 2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.presentation.asciidoc;
import org.asciidoctor.ast.Document;
import org.asciidoctor.ast.DocumentRuby;
import org.asciidoctor.extension.DocinfoProcessor;
import org.gradle.internal.impldep.org.apache.commons.io.IOUtils;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
class MultiLanguageSamplesDocinfoProcessor extends DocinfoProcessor {
public MultiLanguageSamplesDocinfoProcessor() {
super(new HashMap<>());
}
public MultiLanguageSamplesDocinfoProcessor(Map<String, Object> config) {
super(config);
}
@Override
public String process(Document document) {
return "<style type=\"text/css\">" + readResourceContent("/multi-language-samples.css") + "</style>" +
"<script type=\"text/javascript\">" + readResourceContent("/multi-language-samples.js") + "</script>";
}
@Override
public String process(DocumentRuby documentRuby) {
return this.process(document(documentRuby));
}
private String readResourceContent(String resourcePath) {
try (InputStream inputStream = MultiLanguageSamplesDocinfoProcessor.class.getResourceAsStream(resourcePath)) {
return IOUtils.toString(inputStream, StandardCharsets.UTF_8);
} catch (IOException e) {
throw new IllegalStateException("Unable to read source resource for MultiLanguageSamples: " + e.getMessage());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment