Skip to content

Commit 1b277ef

Browse files
committed
Update help.html
1 parent 2072bf3 commit 1b277ef

File tree

1 file changed

+168
-167
lines changed

1 file changed

+168
-167
lines changed

help.html

Lines changed: 168 additions & 167 deletions
Original file line numberDiff line numberDiff line change
@@ -1,168 +1,169 @@
11
<html>
2-
<head>
3-
<style type="text/css">
4-
body {
5-
margin: 25px;
6-
}
7-
8-
h1 {
9-
font-size: 2.5em;
10-
margin-top: 0px;
11-
margin-right: 0px;
12-
margin-bottom: 15px;
13-
margin-left: 0px;
14-
padding: 0px;
15-
font-weight: bold;
16-
cursor: text;
17-
position: relative;
18-
border-bottom-width: 1px;
19-
border-bottom-style: solid;
20-
border-bottom-color: rgb(221, 221, 221);
21-
color: rgb(51, 51, 51);
22-
font-family: Helvetica, arial, freesans, clean, sans-serif;
23-
font-style: normal;
24-
font-variant: normal;
25-
letter-spacing: normal;
26-
orphans: auto;
27-
text-align: start;
28-
text-indent: 0px;
29-
text-transform: none;
30-
white-space: normal;
31-
widows: auto;
32-
word-spacing: 0px;
33-
-webkit-text-stroke-width: 0px;
34-
}
35-
36-
h2 {
37-
margin: 1em 0px 15px;
38-
line-height: 1.7;
39-
font-size: 2em;
40-
padding: 0px;
41-
font-weight: bold;
42-
cursor: text;
43-
position: relative;
44-
border-bottom-width: 1px;
45-
border-bottom-style: solid;
46-
border-bottom-color: rgb(238, 238, 238);
47-
color: rgb(51, 51, 51);
48-
font-family: Helvetica, arial, freesans, clean, sans-serif;
49-
font-style: normal;
50-
font-variant: normal;
51-
letter-spacing: normal;
52-
orphans: auto;
53-
text-align: start;
54-
text-indent: 0px;
55-
text-transform: none;
56-
white-space: normal;
57-
widows: auto;
58-
word-spacing: 0px;
59-
-webkit-text-stroke-width: 0px;
60-
}
61-
62-
p {
63-
margin: 15px 0px;
64-
color: rgb(51, 51, 51);
65-
font-family: Helvetica, arial, freesans, clean, sans-serif;
66-
font-size: 15px;
67-
font-style: normal;
68-
font-variant: normal;
69-
font-weight: normal;
70-
letter-spacing: normal;
71-
line-height: 25px;
72-
orphans: auto;
73-
text-align: start;
74-
text-indent: 0px;
75-
text-transform: none;
76-
white-space: normal;
77-
widows: auto;
78-
word-spacing: 0px;
79-
-webkit-text-stroke-width: 0px;
80-
}
81-
82-
ul {
83-
padding: 0px 0px 0px 30px;
84-
margin: 15px 0px;
85-
color: rgb(51, 51, 51);
86-
font-family: Helvetica, arial, freesans, clean, sans-serif;
87-
font-size: 15px;
88-
font-style: normal;
89-
font-variant: normal;
90-
font-weight: normal;
91-
letter-spacing: normal;
92-
line-height: 25px;
93-
orphans: auto;
94-
text-align: start;
95-
text-indent: 0px;
96-
text-transform: none;
97-
white-space: normal;
98-
widows: auto;
99-
word-spacing: 0px;
100-
-webkit-text-stroke-width: 0px;
101-
}
102-
103-
ol {
104-
padding: 0px 0px 0px 30px;
105-
margin: 15px 0px;
106-
color: rgb(51, 51, 51);
107-
font-family: Helvetica, arial, freesans, clean, sans-serif;
108-
font-size: 15px;
109-
font-style: normal;
110-
font-variant: normal;
111-
font-weight: normal;
112-
letter-spacing: normal;
113-
line-height: 25px;
114-
orphans: auto;
115-
text-align: start;
116-
text-indent: 0px;
117-
text-transform: none;
118-
white-space: normal;
119-
widows: auto;
120-
word-spacing: 0px;
121-
-webkit-text-stroke-width: 0px;
122-
}
123-
124-
strong {
125-
font-weight: bold;
126-
}
127-
</style>
128-
</head>
129-
<body>
130-
<h1>sudoku</h1>
131-
<p>This is a simple web page that provides tools to help solve sudoku puzzles.</p>
132-
<p>To access the web page, go to <a href="http://delta42.github.io/sudoku" style="color: rgb(65, 131, 196); text-decoration: none;">http://delta42.github.io/sudoku</a>.</p>
133-
<p>Note: This web page does not save any entered values or pencilmarks. Refreshing or navigating away from it will reset the page to its initial state without warning.</p>
134-
<h2>Features:</h2>
135-
<ul>
136-
<li>Pencil marks</li>
137-
<li>Cell highlighting based on pencil marks</li>
138-
<li>Flag duplicate values</li>
139-
<li>Show solution</li>
140-
<li>Hints</li>
141-
<li>Mark guesses for quick removal</li>
142-
</ul>
143-
<h2>Instructions:</h2>
144-
<ol>
145-
<li>To begin, <strong>enter some values</strong>. Find a sudoku puzzle and input its values using the number keys to insert values. The arrow keys, TAB, and ENTER can be used for navigation, while DELETE and BACKSPACE remove values. Alternatively enter values using the Paste puzzle link..</li>
146-
<li><strong>Submit the values</strong> by clicking the begin solving link. This sets the values as read-only and enables several features.</li>
147-
<li><strong>Solve the puzzle</strong> using pencil marks, cell highlighting, guesses, hints, and if all else fails, show solution.</li>
148-
</ol>
149-
<h2>Button/link descriptions:</h2>
150-
<ul>
151-
<li><strong>Clear cells</strong>: Deletes all values, resets pencil marks, and removes all highlighting. This resets the page to its initial state.</li>
152-
<li><strong>Begin solving</strong>: Sets the entered values as read-only and submits them to the puzzle solver. Once the values have been submitted, they cannot be changed. This generates a solution for the values and enables the solving features.</li>
153-
<li><strong>Paste puzzle</strong>: Allows values to be inputted from the clipboard. This overwrites existing values. Zeros can be used as placeholders for empty cells. Characters other than 0-9 are ignored. There must be exactly 81 numbers for this to work properly.</li>
154-
<li><strong>1-9</strong>: Highlights all cells that do not have a pencil mark of 1-9 a pale green color. If the pencil marks have been updated, this can be used to easily determine which cells do not have a value of 1-9. Does not update automatically.</li>
155-
<li><strong>Clear</strong>: Removes all cell highlighting.</li>
156-
<li><strong>Enter values</strong>: When this option is selected, typing a number in a cell changes its value.</li>
157-
<li><strong>Enter pencil marks</strong>: When this option is selected, typing a number in a cell toggles the corresponding pencil mark.</li>
158-
<li><strong>Automatically remove pencil marks</strong>: When this option is enabled, entering a value in a cell removes that pencil mark from all of the cell's neighbors (cells in the same row, box, or column).</li>
159-
<li><strong>Update</strong>: Changes all pencil marks so that they show the possible values that each cell could have. This overwrites existing pencil marks.</li>
160-
<li><strong>Reset</strong>: Adds all pencil marks to empty cells. Allows solving the puzzle without the aid of pencil marks. This overwrites existing pencil marks.</li>
161-
<li><strong>Show duplicates</strong>: When this option is enabled, neighboring cells with the same value are flagged red.</li>
162-
<li><strong>Mark blank cells (color)</strong>: Marks all blank cells with a certain color. Use this to make guesses so that if the guess is incorrect, all values entered afterward can be removed easily.</li>
163-
<li><strong>Delete cells marked (color)</strong>: Deletes all cells that have been marked a certain color. Does not affect cells marked a different color or pencil marks.</li>
164-
<li><strong>Show solution</strong>: When this option is enabled, the puzzle's solution will be shown. Does not affect cell values or pencil marks.</li>
165-
<li><strong>Hint</strong>: Gives a hint for cell that was last selected, up to three hints. Hints are based on the solution.</li>
166-
</ul>
167-
</body>
168-
</html>
2+
<head>
3+
<title>Sudoku Help</title>
4+
<style type="text/css">
5+
body {
6+
margin: 25px;
7+
}
8+
9+
h1 {
10+
font-size: 2.5em;
11+
margin-top: 0px;
12+
margin-right: 0px;
13+
margin-bottom: 15px;
14+
margin-left: 0px;
15+
padding: 0px;
16+
font-weight: bold;
17+
cursor: text;
18+
position: relative;
19+
border-bottom-width: 1px;
20+
border-bottom-style: solid;
21+
border-bottom-color: rgb(221, 221, 221);
22+
color: rgb(51, 51, 51);
23+
font-family: Helvetica, arial, freesans, clean, sans-serif;
24+
font-style: normal;
25+
font-variant: normal;
26+
letter-spacing: normal;
27+
orphans: auto;
28+
text-align: start;
29+
text-indent: 0px;
30+
text-transform: none;
31+
white-space: normal;
32+
widows: auto;
33+
word-spacing: 0px;
34+
-webkit-text-stroke-width: 0px;
35+
}
36+
37+
h2 {
38+
margin: 1em 0px 15px;
39+
line-height: 1.7;
40+
font-size: 2em;
41+
padding: 0px;
42+
font-weight: bold;
43+
cursor: text;
44+
position: relative;
45+
border-bottom-width: 1px;
46+
border-bottom-style: solid;
47+
border-bottom-color: rgb(238, 238, 238);
48+
color: rgb(51, 51, 51);
49+
font-family: Helvetica, arial, freesans, clean, sans-serif;
50+
font-style: normal;
51+
font-variant: normal;
52+
letter-spacing: normal;
53+
orphans: auto;
54+
text-align: start;
55+
text-indent: 0px;
56+
text-transform: none;
57+
white-space: normal;
58+
widows: auto;
59+
word-spacing: 0px;
60+
-webkit-text-stroke-width: 0px;
61+
}
62+
63+
p {
64+
margin: 15px 0px;
65+
color: rgb(51, 51, 51);
66+
font-family: Helvetica, arial, freesans, clean, sans-serif;
67+
font-size: 15px;
68+
font-style: normal;
69+
font-variant: normal;
70+
font-weight: normal;
71+
letter-spacing: normal;
72+
line-height: 25px;
73+
orphans: auto;
74+
text-align: start;
75+
text-indent: 0px;
76+
text-transform: none;
77+
white-space: normal;
78+
widows: auto;
79+
word-spacing: 0px;
80+
-webkit-text-stroke-width: 0px;
81+
}
82+
83+
ul {
84+
padding: 0px 0px 0px 30px;
85+
margin: 15px 0px;
86+
color: rgb(51, 51, 51);
87+
font-family: Helvetica, arial, freesans, clean, sans-serif;
88+
font-size: 15px;
89+
font-style: normal;
90+
font-variant: normal;
91+
font-weight: normal;
92+
letter-spacing: normal;
93+
line-height: 25px;
94+
orphans: auto;
95+
text-align: start;
96+
text-indent: 0px;
97+
text-transform: none;
98+
white-space: normal;
99+
widows: auto;
100+
word-spacing: 0px;
101+
-webkit-text-stroke-width: 0px;
102+
}
103+
104+
ol {
105+
padding: 0px 0px 0px 30px;
106+
margin: 15px 0px;
107+
color: rgb(51, 51, 51);
108+
font-family: Helvetica, arial, freesans, clean, sans-serif;
109+
font-size: 15px;
110+
font-style: normal;
111+
font-variant: normal;
112+
font-weight: normal;
113+
letter-spacing: normal;
114+
line-height: 25px;
115+
orphans: auto;
116+
text-align: start;
117+
text-indent: 0px;
118+
text-transform: none;
119+
white-space: normal;
120+
widows: auto;
121+
word-spacing: 0px;
122+
-webkit-text-stroke-width: 0px;
123+
}
124+
125+
strong {
126+
font-weight: bold;
127+
}
128+
</style>
129+
</head>
130+
<body>
131+
<h1>sudoku</h1>
132+
<p>This is a simple web page that provides tools to help solve sudoku puzzles.</p>
133+
<p>To access the web page, go to <a href="http://delta42.github.io/sudoku" style="color: rgb(65, 131, 196); text-decoration: none;">http://delta42.github.io/sudoku</a>.</p>
134+
<p>Note: This web page does not save any entered values or pencilmarks. Refreshing or navigating away from it will reset the page to its initial state without warning.</p>
135+
<h2>Features:</h2>
136+
<ul>
137+
<li>Pencil marks</li>
138+
<li>Cell highlighting based on pencil marks</li>
139+
<li>Flag duplicate values</li>
140+
<li>Show solution</li>
141+
<li>Hints</li>
142+
<li>Mark guesses for quick removal</li>
143+
</ul>
144+
<h2>Instructions:</h2>
145+
<ol>
146+
<li>To begin, <strong>enter some values</strong>. Find a sudoku puzzle and input its values using the number keys to insert values. The arrow keys, TAB, and ENTER can be used for navigation, while DELETE and BACKSPACE remove values. Alternatively enter values using the Paste puzzle link..</li>
147+
<li><strong>Submit the values</strong> by clicking the begin solving link. This sets the values as read-only and enables several features.</li>
148+
<li><strong>Solve the puzzle</strong> using pencil marks, cell highlighting, guesses, hints, and if all else fails, show solution.</li>
149+
</ol>
150+
<h2>Button/link descriptions:</h2>
151+
<ul>
152+
<li><strong>Clear cells</strong>: Deletes all values, resets pencil marks, and removes all highlighting. This resets the page to its initial state.</li>
153+
<li><strong>Begin solving</strong>: Sets the entered values as read-only and submits them to the puzzle solver. Once the values have been submitted, they cannot be changed. This generates a solution for the values and enables the solving features.</li>
154+
<li><strong>Paste puzzle</strong>: Allows values to be inputted from the clipboard. This overwrites existing values. Zeros can be used as placeholders for empty cells. Characters other than 0-9 are ignored. There must be exactly 81 numbers for this to work properly.</li>
155+
<li><strong>1-9</strong>: Highlights all cells that do not have a pencil mark of 1-9 a pale green color. If the pencil marks have been updated, this can be used to easily determine which cells do not have a value of 1-9. Does not update automatically.</li>
156+
<li><strong>Clear</strong>: Removes all cell highlighting.</li>
157+
<li><strong>Enter values</strong>: When this option is selected, typing a number in a cell changes its value.</li>
158+
<li><strong>Enter pencil marks</strong>: When this option is selected, typing a number in a cell toggles the corresponding pencil mark.</li>
159+
<li><strong>Automatically remove pencil marks</strong>: When this option is enabled, entering a value in a cell removes that pencil mark from all of the cell's neighbors (cells in the same row, box, or column).</li>
160+
<li><strong>Update</strong>: Changes all pencil marks so that they show the possible values that each cell could have. This overwrites existing pencil marks.</li>
161+
<li><strong>Reset</strong>: Adds all pencil marks to empty cells. Allows solving the puzzle without the aid of pencil marks. This overwrites existing pencil marks.</li>
162+
<li><strong>Show duplicates</strong>: When this option is enabled, neighboring cells with the same value are flagged red.</li>
163+
<li><strong>Mark blank cells (color)</strong>: Marks all blank cells with a certain color. Use this to make guesses so that if the guess is incorrect, all values entered afterward can be removed easily.</li>
164+
<li><strong>Delete cells marked (color)</strong>: Deletes all cells that have been marked a certain color. Does not affect cells marked a different color or pencil marks.</li>
165+
<li><strong>Show solution</strong>: When this option is enabled, the puzzle's solution will be shown. Does not affect cell values or pencil marks.</li>
166+
<li><strong>Hint</strong>: Gives a hint for cell that was last selected, up to three hints. Hints are based on the solution.</li>
167+
</ul>
168+
</body>
169+
</html>

0 commit comments

Comments
 (0)