mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
typos
This commit is contained in:
parent
9f2bfb33c7
commit
dea51cb9a3
1 changed files with 8 additions and 8 deletions
|
@ -54,15 +54,15 @@ async function shortcode_image_urlpass(src) {
|
||||||
return `/img/${filename}`;
|
return `/img/${filename}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function shortcode_gallerybox(content, src, idthis, idprev, idnext) {
|
async function shortcode_gallerybox(content, src, id_this, id_prev, id_next) {
|
||||||
return `<figure class="gallerybox-item" id="${idthis}">
|
return `<figure class="gallerybox-item" id="${id_this}">
|
||||||
<!-- ${await shortcode_image(src, "", "gallerybox-thumb", "300w")} -->
|
<!-- ${await shortcode_image(src, "", "gallerybox-thumb", "300w")} -->
|
||||||
${await shortcode_image(src, "", "", "1920w")}
|
${await shortcode_image(src, "", "", "1920w")}
|
||||||
|
|
||||||
<figcaption>${content}</figcaption>
|
<figcaption>${content}</figcaption>
|
||||||
|
|
||||||
<a class="gallerybox-prev" href="#${idprev}">❰</a>
|
<a class="gallerybox-prev" href="#${id_prev}">❰</a>
|
||||||
<a class="gallerybox-next" href="#${idnext}">❱</a>
|
<a class="gallerybox-next" href="#${id_next}">❱</a>
|
||||||
</figure>`;
|
</figure>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ function fetch_file(url) {
|
||||||
return file_fetcher.fetch_file(url);
|
return file_fetcher.fetch_file(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
function do_minifycss(source, output_path) {
|
function do_minify_css(source, output_path) {
|
||||||
if(!output_path.endsWith(".css") || !is_production) return source;
|
if(!output_path.endsWith(".css") || !is_production) return source;
|
||||||
|
|
||||||
const result = new CleanCSS({
|
const result = new CleanCSS({
|
||||||
|
@ -91,7 +91,7 @@ function do_minifycss(source, output_path) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function do_minifyhtml(source, output_path) {
|
async function do_minify_html(source, output_path) {
|
||||||
if(!output_path.endsWith(".html") || !is_production) return source;
|
if(!output_path.endsWith(".html") || !is_production) return source;
|
||||||
|
|
||||||
const result = await minify_html(source, {
|
const result = await minify_html(source, {
|
||||||
|
@ -121,8 +121,8 @@ async function do_minifyhtml(source, output_path) {
|
||||||
if(is_production) console.log("Production environment detected, minifying content");
|
if(is_production) console.log("Production environment detected, minifying content");
|
||||||
|
|
||||||
module.exports = function(eleventyConfig) {
|
module.exports = function(eleventyConfig) {
|
||||||
eleventyConfig.addTransform("cssmin", do_minifycss);
|
eleventyConfig.addTransform("cssmin", do_minify_css);
|
||||||
eleventyConfig.addTransform("htmlmin", do_minifyhtml);
|
eleventyConfig.addTransform("htmlmin", do_minify_html);
|
||||||
|
|
||||||
eleventyConfig.addPassthroughCopy("img2brush/img2brush.js");
|
eleventyConfig.addPassthroughCopy("img2brush/img2brush.js");
|
||||||
eleventyConfig.addAsyncShortcode("fetch", fetch);
|
eleventyConfig.addAsyncShortcode("fetch", fetch);
|
||||||
|
|
Loading…
Reference in a new issue