buckram 1.10.4 → 1.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.10.5](https://github.com/pressbooks/buckram/compare/v1.10.4...v1.10.5) (2026-09-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* let links wrap naturally in PDF export ([#445](https://github.com/pressbooks/buckram/issues/445)) ([f9beb20](https://github.com/pressbooks/buckram/commit/f9beb201eb1c945163a5f1d3d5a280eb868e88b4))
|
|
9
|
+
|
|
3
10
|
## [1.10.4](https://github.com/pressbooks/buckram/compare/v1.10.3...v1.10.4) (2026-07-23)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -8,19 +8,21 @@
|
|
|
8
8
|
|
|
9
9
|
@import "../utilities";
|
|
10
10
|
|
|
11
|
+
// Links never hyphenate, in exports or the webbook
|
|
12
|
+
a {
|
|
13
|
+
hyphens: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
11
16
|
@if $type != 'web' {
|
|
12
17
|
a {
|
|
13
|
-
hyphens: none;
|
|
14
18
|
text-decoration: if-map-get($link-text-decoration, $type);
|
|
15
19
|
}
|
|
16
20
|
}
|
|
17
21
|
|
|
18
22
|
@if $type == 'prince' {
|
|
23
|
+
// Links wrap naturally; long URLs break mid-word without hyphens
|
|
19
24
|
a {
|
|
20
|
-
display: inline-block;
|
|
21
25
|
overflow-wrap: break-word;
|
|
22
|
-
text-indent: 0;
|
|
23
|
-
max-width: 100%;
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
.print a {
|