stack-site-builder 1.23.0 → 1.23.1
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 +13 -0
- package/README.md +3 -0
- package/package.json +1 -1
- package/src/styles/global.css +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,18 @@ content schema, while a consuming site supplies only content, taxonomy data and
|
|
|
11
11
|
config. Sites track the theme with `pnpm up stack-site-builder`, so each release
|
|
12
12
|
here is a plain version bump they pull in.
|
|
13
13
|
|
|
14
|
+
## [1.23.1] - 2026-07-29
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Prose blockquote styling** — `>` blockquotes in reading content (courses,
|
|
19
|
+
articles, concepts, stacks and standalone pages) rendered with the browser
|
|
20
|
+
default and were nearly indistinguishable from a normal paragraph. They now
|
|
21
|
+
get a left accent rail and a faint neutral fill so a pulled-out passage reads
|
|
22
|
+
as set apart. Light/dark-aware (theme tokens), and no italic so it renders
|
|
23
|
+
cleanly on Korean prose. Two-trailing-space hard breaks inside the quote are
|
|
24
|
+
preserved as before.
|
|
25
|
+
|
|
14
26
|
## [1.23.0] - 2026-07-27
|
|
15
27
|
|
|
16
28
|
### Added
|
|
@@ -421,6 +433,7 @@ catalog sites from a thin content-only repository.
|
|
|
421
433
|
- **Standalone development setup** — a devcontainer and a minimal `playground/`
|
|
422
434
|
consuming site for developing and previewing the theme on its own.
|
|
423
435
|
|
|
436
|
+
[1.23.1]: https://github.com/CodeComposeStudio/stack-site-builder/compare/v1.23.0...v1.23.1
|
|
424
437
|
[1.23.0]: https://github.com/CodeComposeStudio/stack-site-builder/compare/v1.22.0...v1.23.0
|
|
425
438
|
[1.19.3]: https://github.com/CodeCompose7/stack-site-builder/compare/v1.19.2...v1.19.3
|
|
426
439
|
[1.19.2]: https://github.com/CodeCompose7/stack-site-builder/compare/v1.19.1...v1.19.2
|
package/README.md
CHANGED
|
@@ -202,6 +202,9 @@ import Bookmark from 'stack-site-builder/components/Bookmark.astro';
|
|
|
202
202
|
<Bookmark url="https://…" title="…" description="…" />
|
|
203
203
|
```
|
|
204
204
|
|
|
205
|
+
Markdown/MDX authoring gotchas (nested-list indentation, blockquotes, hard
|
|
206
|
+
breaks, wikilinks): `docs/content-authoring.md`.
|
|
207
|
+
|
|
205
208
|
## RSS
|
|
206
209
|
|
|
207
210
|
The articles collection feeds `/rss.xml` (default locale) and
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stack-site-builder",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.23.
|
|
4
|
+
"version": "1.23.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "The engine behind the awesome-*-stack catalog sites: an Astro theme with the catalog/concepts/articles/slides/samples routes, components, styles and markdown pipeline. Sites provide content, taxonomy data and config.",
|
|
7
7
|
"repository": {
|
package/src/styles/global.css
CHANGED
|
@@ -581,6 +581,24 @@ summary {
|
|
|
581
581
|
list-style: decimal;
|
|
582
582
|
padding-left: 1.25rem;
|
|
583
583
|
}
|
|
584
|
+
/* Blockquotes — a quiet left-accent rail with a faint neutral fill, so a
|
|
585
|
+
pulled-out passage reads as set apart from the running text. No italic: it
|
|
586
|
+
renders on Korean prose too, where slanted CJK looks wrong. First/last child
|
|
587
|
+
margins collapse so the quote hugs its own padding. */
|
|
588
|
+
.prose :where(blockquote) {
|
|
589
|
+
margin: 1.25rem 0;
|
|
590
|
+
padding: 0.75rem 1.15rem;
|
|
591
|
+
border-left: 3px solid var(--aas-accent);
|
|
592
|
+
border-radius: 0 0.5rem 0.5rem 0;
|
|
593
|
+
background: var(--aas-tint);
|
|
594
|
+
color: color-mix(in srgb, var(--aas-text) 88%, transparent);
|
|
595
|
+
}
|
|
596
|
+
.prose :where(blockquote > :first-child) {
|
|
597
|
+
margin-top: 0;
|
|
598
|
+
}
|
|
599
|
+
.prose :where(blockquote > :last-child) {
|
|
600
|
+
margin-bottom: 0;
|
|
601
|
+
}
|
|
584
602
|
.prose :where(a) {
|
|
585
603
|
color: var(--aas-accent);
|
|
586
604
|
text-decoration: none;
|