diff --git a/content/js/config/index.js b/content/js/config/index.js index afe7faa..5fba1b4 100644 --- a/content/js/config/index.js +++ b/content/js/config/index.js @@ -128,7 +128,7 @@ const escape_HTML = (str) => }[tag] || tag) ); -const BIRTHDAY = new Date(2020, 9, 17, 0, 0, 0, 0); // Ari-web start: 2020/10/17 +const BIRTHDAY = new Date(2020, 9, 16, 0, 0, 0, 0); // Ari-web start: 2020/10/17 /* let dt = new Date(); diff --git a/page/info/index.html b/page/info/index.html index 2cd5377..7fb840a 100644 --- a/page/info/index.html +++ b/page/info/index.html @@ -125,10 +125,10 @@ >https://legacy.blog.ari-web.xyz/blogs/New-blog-design!_-9192801266 - +
  • :
  • + --> + diff --git a/scripts/minhtml.sh b/scripts/minhtml.sh index b3f97ad..3a87299 100755 --- a/scripts/minhtml.sh +++ b/scripts/minhtml.sh @@ -7,10 +7,10 @@ main() { echo 'Minifying all HTML' find . -type f -name "*.html" \ - -exec html-minifier --collapse-whitespace -o {}.min {} \; \ + -exec html-minifier --collapse-whitespace --collapse-inline-tag-whitespace --remove-tag-whitespace -o {}.min {} \; \ -exec rm {} \; \ -exec mv {}.min {} \; \ - -exec sh -c "echo '' >>\"\$1\"" -- {} \; + -exec sh -c "printf '%s' '\n\n' >>\"\$1\"" -- {} \; else echo 'Not minifying HTML in non-CI mode' fi