@panaversity/ksor 0.0.47 → 0.0.48
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,14 @@
|
|
|
1
1
|
# @panaversity/ksor
|
|
2
2
|
|
|
3
|
+
## 0.0.48
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4883d2c: A document page gives its text 16px more room: the horizontal padding drops
|
|
8
|
+
from 32px to 24px. The reading measure itself is unchanged — widening it was
|
|
9
|
+
tried and reverted, because measuring what the column already is showed it is
|
|
10
|
+
wider than the comment beside it claimed, not narrower.
|
|
11
|
+
|
|
3
12
|
## 0.0.47
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panaversity/ksor",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
4
4
|
"description": "Knowledge System of Record — compile governed markdown into a static site for people and an MCP server for AI agents, with citations and measured abstention.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"abstention",
|
|
@@ -228,20 +228,37 @@
|
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
/* ── The reading measure ─────────────────────────────────────────────────────
|
|
231
|
-
The shell caps the article at 900px, which
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
231
|
+
The shell caps the article at 900px, which puts far more than the 45–75 that
|
|
232
|
+
reading research and every typographic manual settle on a line, and is the
|
|
233
|
+
reason the page read as a slab. 46rem holds the text to 688px and the
|
|
234
|
+
article still centres itself in the main column. (The character counts this
|
|
235
|
+
paragraph used to give were wrong in both directions — see below.)
|
|
236
236
|
|
|
237
237
|
It is also half of what stops the column moving: the other half is holding
|
|
238
238
|
the table-of-contents column on every page (app/docs/[[...slug]]/page.tsx).
|
|
239
239
|
Sidebar and rail are both 268px, so main is centred in the viewport and this
|
|
240
240
|
measure is centred in main — the same place on a document with headings and
|
|
241
241
|
one without. `data-full` is the shell's own escape hatch for a page that
|
|
242
|
-
asked for the whole width; it keeps it.
|
|
242
|
+
asked for the whole width; it keeps it.
|
|
243
|
+
|
|
244
|
+
The measure STAYS at 46rem, and the number above is corrected here rather
|
|
245
|
+
than trusted: asked for a wider column, the honest thing was to measure what
|
|
246
|
+
this one already is. Simulating the browser's own line-breaking over this
|
|
247
|
+
record's prose in its real font gives 89 characters at 46rem — not 66 — and
|
|
248
|
+
the shell's 900px gives 122, not 78. Both figures in the paragraph above
|
|
249
|
+
were wrong; the CONCLUSION they supported was right, and by a wider margin
|
|
250
|
+
than it claimed.
|
|
251
|
+
|
|
252
|
+
So widening was tried and reverted: 49rem counts 95 and 52rem counts 104,
|
|
253
|
+
each further from the 45–75 the research settles on, not closer. What is
|
|
254
|
+
left is a real gain that costs nothing — the horizontal padding drops from
|
|
255
|
+
32px to 24px, which gives the text 16px more without touching the measure.
|
|
256
|
+
|
|
257
|
+
The white space either side of a bounded column on a 1728px screen is the
|
|
258
|
+
price of the column being bounded. It is not a bug to be tuned away. */
|
|
243
259
|
#nd-page:not([data-full="true"]) {
|
|
244
260
|
max-width: 46rem;
|
|
261
|
+
padding-inline: 1.5rem;
|
|
245
262
|
}
|
|
246
263
|
|
|
247
264
|
html {
|