Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -566,17 +566,11 @@ public void render() throws IOException {
getTaskResources(),
"table_padding.css",
"custom_styles.css",
"prettify/prettify.css",
"prettify/prism.css");

// append prettify to scripts
Provider<RegularFile> customScript = getOutputDir().file("script-files/lucene-script.js");
concat(
customScript,
getTaskResources().dir("prettify"),
"prettify.js",
"inject-javadocs.js",
"prism.js");
concat(customScript, getTaskResources().dir("prettify"), "prism.js");

opts.add(List.of("--add-script", customScript.get().getAsFile().toString()));
opts.add(List.of("--add-stylesheet", customCss.get().getAsFile().toString()));
Expand Down
27 changes: 0 additions & 27 deletions gradle/documentation/render-javadoc/prettify/inject-javadocs.js

This file was deleted.

17 changes: 0 additions & 17 deletions gradle/documentation/render-javadoc/prettify/prettify.css

This file was deleted.

46 changes: 0 additions & 46 deletions gradle/documentation/render-javadoc/prettify/prettify.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
/**
* Factory for {@link ArabicNormalizationFilter}.
*
* <pre class="prettyprint">
* <pre><code class="language-xml">
* &lt;fieldType name="text_arnormal" class="solr.TextField" positionIncrementGap="100"&gt;
* &lt;analyzer&gt;
* &lt;tokenizer class="solr.StandardTokenizerFactory"/&gt;
* &lt;filter class="solr.ArabicNormalizationFilterFactory"/&gt;
* &lt;/analyzer&gt;
* &lt;/fieldType&gt;</pre>
* &lt;/fieldType&gt;</code></pre>
*
* @since 3.1
* @lucene.spi {@value #NAME}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
/**
* Factory for {@link ArabicStemFilter}.
*
* <pre class="prettyprint">
* <pre><code class="language-xml">
* &lt;fieldType name="text_arstem" class="solr.TextField" positionIncrementGap="100"&gt;
* &lt;analyzer&gt;
* &lt;tokenizer class="solr.StandardTokenizerFactory"/&gt;
* &lt;filter class="solr.ArabicNormalizationFilterFactory"/&gt;
* &lt;filter class="solr.ArabicStemFilterFactory"/&gt;
* &lt;/analyzer&gt;
* &lt;/fieldType&gt;</pre>
* &lt;/fieldType&gt;</code></pre>
*
* @since 3.1
* @lucene.spi {@value #NAME}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
/**
* Factory for {@link BulgarianStemFilter}.
*
* <pre class="prettyprint">
* <pre><code class="language-xml">
* &lt;fieldType name="text_bgstem" class="solr.TextField" positionIncrementGap="100"&gt;
* &lt;analyzer&gt;
* &lt;tokenizer class="solr.StandardTokenizerFactory"/&gt;
* &lt;filter class="solr.LowerCaseFilterFactory"/&gt;
* &lt;filter class="solr.BulgarianStemFilterFactory"/&gt;
* &lt;/analyzer&gt;
* &lt;/fieldType&gt;</pre>
* &lt;/fieldType&gt;</code></pre>
*
* @since 3.1.0
* @lucene.spi {@value #NAME}
Expand Down
Loading