updates to about.html

This commit is contained in:
fooflington 2016-12-19 15:32:26 +00:00 committed by GitHub
parent 4bcec40e06
commit 75114fcdcc

View File

@ -4,10 +4,13 @@
</head> </head>
<body> <body>
<h1>Wordsearch Builder: About</h1> <h1><a href="index.jsp">Wordsearch Builder</a>: About</h1>
Wordsearch Builder takes a list of words and places them on a grid in any direction allowing the to cross-over where possible then fills in the remaining empty spaces with semi-random letters. Wordsearch Builder takes a list of words and places them on a grid in any direction allowing the to cross-over where possible then fills in the remaining empty spaces with semi-random letters.
Code available on <a href="https://github.com/fooflington/wordsearch">GitHub</a> <ul>
<li>Code available on <a href="https://github.com/fooflington/wordsearch">GitHub</a>.</li>
<li>For more information please contact <a href="mailto:wordsearch@mafoo.org.uk">wordsearch@mafoo.org.uk</a>.</li>
</ul>
<h2>Basic algorithm</h2> <h2>Basic algorithm</h2>
<ol> <ol>
<li>Foreach word <li>Foreach word
@ -20,5 +23,11 @@
<li>When all words are placed, infill the remaining cells with random characters weighted by <a href="https://www.math.cornell.edu/~mec/2003-2004/cryptography/subs/frequencies.html">standard English letter frequencies</a></li> <li>When all words are placed, infill the remaining cells with random characters weighted by <a href="https://www.math.cornell.edu/~mec/2003-2004/cryptography/subs/frequencies.html">standard English letter frequencies</a></li>
</ol> </ol>
The abort-and-retry word placement to try 500 times before giving up. The abort-and-retry word placement to try 500 times before giving up.
<h2>Planned features:</h2>
<ul>
<li>Save and Publish wordsearches</li>
<li>Dynamic resizing of grid</li>
<li>Hide word list</li>
</ul>
</body> </body>
</html> </html>