@riboseinc/anafero-cli 0.0.59 → 0.0.60
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/bootstrap.css +5 -1
- package/bootstrap.css.map +2 -2
- package/bootstrap.js +2 -1
- package/bootstrap.js.map +2 -2
- package/build-site.css +5 -1
- package/build-site.mjs +2 -1
- package/package.json +1 -1
package/build-site.css
CHANGED
|
@@ -31869,7 +31869,11 @@ tbody.table_0cdc494a_hm005a_spectrum-Table-body .table_0cdc494a_hm005a_spectrum-
|
|
|
31869
31869
|
var(--spectrum-alias-highlight-hover) 2rem);
|
|
31870
31870
|
color: var(--spectrum-accent-color-1300);
|
|
31871
31871
|
> li {
|
|
31872
|
-
display: inline
|
|
31872
|
+
display: inline;
|
|
31873
|
+
word-break: keep-all;
|
|
31874
|
+
overflow-wrap: break-word;
|
|
31875
|
+
white-space-collapse: collapse;
|
|
31876
|
+
text-wrap-style: balance;
|
|
31873
31877
|
> a {
|
|
31874
31878
|
&:link,
|
|
31875
31879
|
&:visited {
|
package/build-site.mjs
CHANGED
|
@@ -316902,8 +316902,9 @@ function processAttributes(el, locateResource, reverseResource, onIntegrityViola
|
|
|
316902
316902
|
el.setAttribute("id", inferredID);
|
|
316903
316903
|
} else if (["href", "src"].includes(attr.name)) {
|
|
316904
316904
|
const isHTTPHref = attr.name === "href" && attr.value.startsWith("http");
|
|
316905
|
+
const isMailtoHref = attr.name === "href" && attr.value.startsWith("mailto:");
|
|
316905
316906
|
const isDataSrc = attr.name === "src" && attr.value.startsWith("data:");
|
|
316906
|
-
if (!isHTTPHref && !isDataSrc) {
|
|
316907
|
+
if (!isHTTPHref && !isDataSrc && !isMailtoHref) {
|
|
316907
316908
|
let resolvedResourcePath;
|
|
316908
316909
|
try {
|
|
316909
316910
|
resolvedResourcePath = locateResource(attr.value);
|