Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Markup: PDF generation #600

Merged
merged 29 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a0a5165
Markup: PDF generation
gesa May 28, 2024
bafbf5b
Move css & images into css & img directories
gesa Jul 2, 2024
3029141
rebaseline
bakkot Jul 3, 2024
c2f0042
Update css/elements.css
michaelficarra Jul 10, 2024
8896890
Update baselines from colspan specificty improvement
gesa Aug 15, 2024
bcb8986
move unicode property table to 262
gesa Sep 10, 2024
5a0e577
emu-imports are now removed during build
bakkot Nov 5, 2024
bc8f0c2
generate old toc with correct style for printing
bakkot Nov 5, 2024
37e4f43
ecma262 is reordering colophon to end already
bakkot Nov 5, 2024
b3e5b4a
breaking: rename old-toc to printable
bakkot Nov 5, 2024
5ae6afc
rectify annex headers
bakkot Nov 8, 2024
7f8d0c8
remove ecma262 logo during printable build
bakkot Nov 8, 2024
1bd7f5d
rebaseline and fix oldToc baseline
bakkot Nov 8, 2024
08c58b2
only annotate external links in printable builds
bakkot Nov 8, 2024
57c5e51
set data-year on version during build
bakkot Nov 8, 2024
e084be2
allow metadata title/version to contain HTML
bakkot Nov 8, 2024
a4ca63d
generate shortname in its preferred form to begin with
bakkot Nov 8, 2024
79aa797
run formatter
bakkot Nov 8, 2024
aaaee72
generate covers during build
bakkot Nov 8, 2024
e2bec7a
move copyright/metadata
bakkot Nov 8, 2024
ea0ce7e
fix test
bakkot Nov 15, 2024
a7db814
fix copyright
bakkot Mar 3, 2025
8a2f34a
update snapshots
bakkot Mar 3, 2025
d678583
remove ecma262-specific CSS and fix readme
bakkot Mar 3, 2025
0c13587
drop lint for whitespace in tags
bakkot Mar 3, 2025
4f76a45
fix lint
bakkot Mar 3, 2025
9c9aa93
fix lint harder
bakkot Mar 3, 2025
45a82c8
Merge branch 'main' into pdf-gen-fixes
bakkot Mar 3, 2025
e39e4ce
all assets go in subdirectories I guess
bakkot Mar 3, 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
27 changes: 27 additions & 0 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generating a PDF from ecmarkup

In order to produce a PDF, the front matter `title`, `shortname`, `version`, and `date` are **mandatory**. If generating a final annual edition, date should reflect the date of the Ecma GA which will ratify the Standard. For example:

```
title: ECMAScript® 2024 Language Specification
shortname: ECMA-262
version: 15<sup>th</sup> Edition
date: 2024-06-25
```

To generate markup for use in PDF conversion, make sure to include the options `--assets`, `--assets-dir`, and `--printable`. If you have images and styles to include, make sure to move them into your assets directory before running `ecmarkup`. For example:

```shell
mkdir -p out &&
cp -R images out &&
ecmarkup --assets external --assets-dir out --printable spec.html out/index.html
```

Then, from your spec's working directory, run [`prince`](https://www.princexml.com/) to generate your PDF.

```shell
cd path/to/spec
prince --script ./node_modules/ecmarkup/js/print.js out/index.html -o path/to/output.pdf
```

This has been extensively tested with Prince 15. Earlier and later editions not guaranteed.
60 changes: 37 additions & 23 deletions css/elements.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ body {
font-size: 18px;
line-height: 1.5;
font-family:
IBM Plex Serif,
'IBM Plex Serif',
serif;
font-variant-numeric: slashed-zero;
padding: 0;
Expand All @@ -119,6 +119,8 @@ body {
padding-bottom: 1em;
}

h1.shortname { display: none; }

body.oldtoc {
margin: 0 auto;
}
Expand Down Expand Up @@ -159,7 +161,7 @@ span.e-user-code::before {
vertical-align: middle;
text-transform: uppercase;
font-family:
IBM Plex Sans,
'IBM Plex Sans',
sans-serif;
font-weight: 900;
font-size: x-small;
Expand All @@ -184,8 +186,8 @@ span.e-user-code::before {
code {
font-weight: bold;
font-family:
Comic Code,
IBM Plex Mono,
'Comic Code',
'IBM Plex Mono',
monospace;
white-space: pre;
}
Expand Down Expand Up @@ -256,7 +258,7 @@ var.referenced6 {

emu-const {
font-family:
IBM Plex Sans,
'IBM Plex Sans',
sans-serif;
font-variant: small-caps;
text-transform: uppercase;
Expand Down Expand Up @@ -458,7 +460,7 @@ emu-rhs emu-nt {
emu-t {
display: inline-block;
font-family:
IBM Plex Mono,
'IBM Plex Mono',
monospace;
font-weight: bold;
white-space: nowrap;
Expand Down Expand Up @@ -495,7 +497,7 @@ emu-params,
emu-opt {
margin-right: 1ex;
font-family:
IBM Plex Mono,
'IBM Plex Mono',
monospace;
}

Expand All @@ -511,7 +513,7 @@ emu-opt {
emu-gprose {
font-size: 0.9em;
font-family:
IBM Plex Sans,
'IBM Plex Sans',
sans-serif;
}

Expand Down Expand Up @@ -780,6 +782,10 @@ emu-table td {
background: #fff;
}

td[colspan]:not([colspan="1"]), th[colspan]:not([colspan="1"]) {
text-align: center;
}

/* Note: the left content edges of table.lightweight-table >tbody >tr >td
and div.display line up. */
table.lightweight-table {
Expand Down Expand Up @@ -925,7 +931,7 @@ tr.del > td {
height: 18px;
font-size: 12px;
margin: 0 5px 0 10px;
font-family: IBM Plex Sans;
font-family: 'IBM Plex Sans', sans-serif;
}
#menu-pins .unpin-all:hover {
background: #ddd;
Expand All @@ -950,7 +956,7 @@ tr.del > td {
align-self: center;
}

#menu-pins-list > li:before,
#menu-pins-list > li::before,
#menu-pins-list > li > .unpin {
flex-shrink: 0;
flex-grow: 0;
Expand All @@ -960,7 +966,7 @@ tr.del > td {
background: none;
border: none;
}
#menu-pins-list > li:before,
#menu-pins-list > li::before,
#menu-pins-list > li > .unpin:hover {
background: #ccc;
}
Expand All @@ -974,7 +980,7 @@ tr.del > td {
color: #bb1212;
}

#menu-pins-list > li:before {
#menu-pins-list > li::before {
content: counter(pins-counter);
counter-increment: pins-counter;
font-size: 16px;
Expand Down Expand Up @@ -1152,7 +1158,7 @@ a.menu-pane-header-production {
overflow-y: auto;
}

li.menu-search-result-clause:before {
li.menu-search-result-clause::before {
content: 'clause';
width: 40px;
display: inline-block;
Expand All @@ -1161,7 +1167,7 @@ li.menu-search-result-clause:before {
color: #666;
font-size: 75%;
}
li.menu-search-result-op:before {
li.menu-search-result-op::before {
content: 'op';
width: 40px;
display: inline-block;
Expand All @@ -1171,7 +1177,7 @@ li.menu-search-result-op:before {
font-size: 75%;
}

li.menu-search-result-prod:before {
li.menu-search-result-prod::before {
content: 'prod';
width: 40px;
display: inline-block;
Expand All @@ -1181,7 +1187,7 @@ li.menu-search-result-prod:before {
font-size: 75%;
}

li.menu-search-result-term:before {
li.menu-search-result-term::before {
content: 'term';
width: 40px;
display: inline-block;
Expand Down Expand Up @@ -1211,10 +1217,10 @@ li.menu-search-result-term:before {
white-space: nowrap;
}

#menu-trace-list li .secnum:after {
#menu-trace-list li .secnum::after {
content: ' ';
}
#menu-trace-list li:before {
#menu-trace-list li::before {
content: counter(item) ' ';
background-color: #222;
counter-increment: item;
Expand Down Expand Up @@ -1301,8 +1307,8 @@ li.menu-search-result-term:before {
text-decoration: underline;
}

.toolbox:after,
.toolbox:before {
.toolbox::after,
.toolbox::before {
top: 100%;
left: 15px;
border: solid transparent;
Expand All @@ -1313,13 +1319,13 @@ li.menu-search-result-term:before {
pointer-events: none;
}

.toolbox:after {
.toolbox::after {
border-color: rgba(0, 0, 0, 0);
border-top-color: #ddd;
border-width: 10px;
margin-left: -10px;
}
.toolbox:before {
.toolbox::before {
border-color: rgba(204, 204, 204, 0);
border-top-color: #aaa;
border-width: 12px;
Expand Down Expand Up @@ -1358,7 +1364,7 @@ li.menu-search-result-term:before {
display: flex;
}

#references-pane-close:after {
#references-pane-close::after {
content: '\2716';
float: right;
cursor: pointer;
Expand All @@ -1373,10 +1379,18 @@ li.menu-search-result-term:before {
padding-right: 5px;
}

emu-normative-optional::before {
display: block;
color: #884400;
content: "NORMATIVE OPTIONAL";
}

emu-normative-optional,
[normative-optional],
[deprecated],
[legacy] {
border-left: 5px solid #ff6600;
display: block;
padding: 0.5em;
background: #ffeedd;
}
Expand Down
Loading