No longer use showdown to build HTML, will still need to improve build process for that page, but are getting the tables correctly. Need to fix the underlining, but will use spans for now.

This commit is contained in:
Matt McWilliams 2022-08-02 16:27:53 -04:00
parent a8d65a9784
commit 50109883c7
6 changed files with 1406 additions and 862 deletions

View File

@ -870,9 +870,9 @@ There are three basic types of image superposition, named according to how they
Pictures A & B combined by... Pictures A & B combined by...
1. _Double exposure from positives._ The print film is eared twice, once from A's positive, once from B's positive. 1. <span class="underline">Double exposure from positives.</span> The print film is eared twice, once from A's positive, once from B's positive.
2. _Double exposure from negatives._ The print film is exposed twice, once from A's negative, once from B's negative. 2. <span class="underline">Double exposure from negatives.</span> The print film is exposed twice, once from A's negative, once from B's negative.
3. _Bipack._ Two films, either A's and B's positives, or else A's and B's negatives, are inserted together in the printer gate. The print film is exposed once, from this pair. 3. <span class="underline">Bipack.</span> Two films, either A's and B's positives, or else A's and B's negatives, are inserted together in the printer gate. The print film is exposed once, from this pair.
The print film is unspecified. The print film is unspecified.
It is in the final positive print that the three types of combination are compared, and they look very different. It is in the final positive print that the three types of combination are compared, and they look very different.
@ -1489,7 +1489,7 @@ The greatest difference is in the cyan (C), so a red filter such as Wratten #29
## HICON PROCESSING ## HICON PROCESSING
_Negative_ <span class="underline">Negative</span>
1. Develop 6 minutes in D-11 @70° with continuous agitation. 1. Develop 6 minutes in D-11 @70° with continuous agitation.
2. Rinse 30 seconds in stopbath or water. 2. Rinse 30 seconds in stopbath or water.
@ -1498,7 +1498,7 @@ _Negative_
5. Wash 2 minutes in running water (longer for permanence). 5. Wash 2 minutes in running water (longer for permanence).
6. Dry. 6. Dry.
_Reversal_ <span class="underline">Reversal</span>
1. Develop 6 minutes in modified D-11 (adding 2g Sodium Thiocyanate per liter) @70° with continuous agitation. 1. Develop 6 minutes in modified D-11 (adding 2g Sodium Thiocyanate per liter) @70° with continuous agitation.
2. Rinse 1 minute in water only. 2. Rinse 1 minute in water only.

View File

@ -11,7 +11,7 @@ Preserving alternate spellings not created in the OCR process.
### PDF + HTML Dependencies ### PDF + HTML Dependencies
* pandoc * pandoc
* showdown * wkhtmltopdf
```bash ```bash
bash compile.sh bash compile.sh

View File

@ -3,6 +3,6 @@
mkdir -p pdf mkdir -p pdf
mkdir -p html mkdir -p html
pandoc --css=noopt.css -o pdf/NOTES_ON_OPTICAL_PRINTER_TECHNIQUE.pdf -f markdown+implicit_figures NOTES_ON_OPTICAL_PRINTER_TECHNIQUE.md pandoc -o pdf/NOTES_ON_OPTICAL_PRINTER_TECHNIQUE.pdf -f markdown+implicit_figures NOTES_ON_OPTICAL_PRINTER_TECHNIQUE.md
showdown makehtml -i NOTES_ON_OPTICAL_PRINTER_TECHNIQUE.md -o html/index.html pandoc --css=style.css -o html/index.html -t html -f markdown+implicit_figures NOTES_ON_OPTICAL_PRINTER_TECHNIQUE.md

File diff suppressed because it is too large Load Diff

View File

@ -5,4 +5,8 @@
.indexTable{ .indexTable{
color: red; color: red;
}
.underline{
text-decoration: underline;
} }