Fix links to images

This commit is contained in:
Drew Galbraith 2023-05-03 16:12:31 -07:00
parent 786c0cb49e
commit d694a71493
1 changed files with 10 additions and 10 deletions

View File

@ -37,7 +37,7 @@ puzzle with nothing in it.
} }
``` ```
-- Screenshot: sudoku-1.png [border](sudoku-1.png)
I'm not joking when I say I'm going to have to do baby steps here. I'm not joking when I say I'm going to have to do baby steps here.
@ -64,13 +64,13 @@ want a narrower one for the cells.
} }
``` ```
-- Screenshot: sudoku-2.png [boxes](sudoku-2.png)
Reload that and... right div's auto linebreak after them. Reload that and... right div's auto linebreak after them.
I think we can "float: left" these bad boys and... I think we can "float: left" these bad boys and...
-- Screenshot: sudoku-3.png [boxes2](sudoku-3.png)
Right, now I'm pretty sure the boxes are 210 + 4 pixels wide because the border isn't included. Right, now I'm pretty sure the boxes are 210 + 4 pixels wide because the border isn't included.
While I'm tempted to just math my way out of this I recall that you can specify the border-box While I'm tempted to just math my way out of this I recall that you can specify the border-box
@ -79,7 +79,7 @@ sizing to avoid this.
Now this works! Now the astute of you may have noticed that there were 10 not 9 boxes in the Now this works! Now the astute of you may have noticed that there were 10 not 9 boxes in the
screenshot with the 2 columns. That became even more obvious in the full grid. screenshot with the 2 columns. That became even more obvious in the full grid.
-- Screenshot: sudoku-4.png??? [boxes3](sudoku-4.png)
Ok now we can just recreate all of this with the cells and should be good to go right? Ok now we can just recreate all of this with the cells and should be good to go right?
@ -90,7 +90,7 @@ just use flexbox).
Finally this works! Finally this works!
-- Screenshot: sudoku-5.png [grid](sudoku-5.png)
## Displaying a puzzle ## Displaying a puzzle
@ -111,7 +111,7 @@ StackOverflow answer convinced me.
} }
``` ```
-- Screenshot: sudoku-6.png [cell number](sudoku-6.png)
### Taking the puzzle from the URL ### Taking the puzzle from the URL
@ -150,7 +150,7 @@ window.onload = (event) => {
And hooray it works super well! And hooray it works super well!
-- Screenshot: sudoku-7.png [bad puzzles](sudoku-7.png)
Oh wait... I didn't think about the fact that the elements in the HTMLCollection from the Oh wait... I didn't think about the fact that the elements in the HTMLCollection from the
document.getElementsByClassName call wouldn't be in the row order of the puzzle (all of the cells document.getElementsByClassName call wouldn't be in the row order of the puzzle (all of the cells
@ -173,7 +173,7 @@ for (i = 0; i < 81; i++) {
It works! It works!
-- Screenshot: sudoku-8.png [good puzzle](sudoku-8.png)
Still some goofiness like the border on the outside being thinner than the interiors but I'm pretty Still some goofiness like the border on the outside being thinner than the interiors but I'm pretty
happy with this for now. happy with this for now.
@ -199,7 +199,7 @@ string and let the browser break them up into multiple lines for us.
This comes out quite nicely: This comes out quite nicely:
-- Screenshot: sudoku-9.png [pencil marks](sudoku-9.png)
### Reading the pencil marks from the url ### Reading the pencil marks from the url
@ -235,4 +235,4 @@ Using the string above we can use the following javascript code to parse and ins
Which also comes out nicely: Which also comes out nicely:
-- Screenshot: sudoku-10.png [full puzzle](sudoku-10.png)