Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Feat/gh-action-native-arm #2774

Closed
wants to merge 33 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ce10aae
Next version
Keats Aug 15, 2024
0098119
exclude paginated pages in sitemap (#2555)
pranitbauva1997 Aug 26, 2024
6422779
feat: port zola release build to gh actions & support linux arm64
hegerdes Sep 3, 2024
2904f63
fix: add buildx support for multi-arch docker images
hegerdes Sep 3, 2024
5bcf7c6
fix: pin gh release action to sha & allow pre-releases
hegerdes Sep 4, 2024
0ec2840
fix: use env in gh action for linux arm build
hegerdes Sep 4, 2024
ea4b901
chore: switch to dtolnay/rust-toolchain action for rust setup
hegerdes Sep 5, 2024
d411bd9
fix: windows archive step
hegerdes Sep 7, 2024
481135f
feat: build relases on gh-actions & support linux arm64 (#2629)
hegerdes Sep 13, 2024
45c558d
chore: add missing symbol (#2641)
xixishidibei Sep 18, 2024
6798b6e
remove square brackets
Keats Sep 22, 2024
ead17d0
Allow treating a missing highlight language as error (#2642)
SamWilsn Sep 25, 2024
9119e9f
Move sublime into config module (#2580)
bemyak Oct 11, 2024
ad79860
Add pagination info to sections (#2653)
ZzMzaw Oct 11, 2024
2b5c3d0
Handle file events emitted by Nova on macOS (#2674)
jamiedumont Oct 18, 2024
ab0ad33
Improve accessibility by nesting bottom footnotes inside footer eleme…
vilhelmgray Nov 6, 2024
dded202
Add external links class option to Markdown configuration (#2717)
welpo Dec 7, 2024
bc00064
refactor: replace static with const for global constants (#2729)
Integral-Tech Dec 7, 2024
11edd7d
feat: do not minify js when minify html
st1020 Dec 10, 2024
4452794
test: update tests
st1020 Dec 10, 2024
a586d95
Merge pull request #2732 from st1020/feat/do-not-minify-js-when-minif…
Keats Dec 11, 2024
0a43f61
Add optional arg to `serve` for extra paths to watch for changes (#2745)
rparrett Dec 26, 2024
a8d0ddf
Add path annotation for codeblock (#2610)
izissise Dec 26, 2024
048473a
Update changelog
Keats Dec 26, 2024
6b2cdd8
feat: make urls clickable in github action logs (#2754)
c-git Dec 30, 2024
336533d
Allow nested shortcodes (#2748)
ARitz-Cracker Jan 2, 2025
ed2e577
Fix continue-reading parsing with inline HTML, add summary-cutoff tem…
clarfonthey Jan 2, 2025
d8ac819
Add `--skip-external-links` CLI flag to `check` subcommand (#2756)
lo48576 Jan 2, 2025
8e3357e
Add optional parsing of definition lists (#2763)
matthiasschaub Jan 6, 2025
769ebc6
Implement zola serve --store-html (#2750)
ppom0 Jan 9, 2025
9733135
Update deps
Keats Jan 11, 2025
897d8f5
Adds *.txt to the list of template files loaded by Tera (#2769)
ky-bean Jan 13, 2025
ce1708a
Merge branch 'next'
hegerdes Jan 16, 2025
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
Prev Previous commit
Next Next commit
feat: do not minify js when minify html
  • Loading branch information
st1020 committed Dec 10, 2024
commit 11edd7d7766a012a3afabdf5564c23d553d6d600
2 changes: 1 addition & 1 deletion components/site/src/minify.rs
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ pub fn html(html: String) -> Result<String> {
let mut cfg = Cfg::spec_compliant();
cfg.keep_html_and_head_opening_tags = true;
cfg.minify_css = true;
cfg.minify_js = true;
cfg.minify_js = false;

let minified = minify(html.as_bytes(), &cfg);
match std::str::from_utf8(&minified) {
Loading