Skip to content

Commit 2e09f3c

Browse files
committed
replace needless HTML with markdown in README.md
1 parent 16300d5 commit 2e09f3c

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@
33
This app lets you play around with word lists in various ways:
44

55
* Random mode lets you pick words at random from a word list. It uses
6-
<a href="https://en.wikipedia.org/wiki/Sampling_(statistics)">uniform-random sampling without replacement</a>.
6+
[uniform-random sampling with replacement](https://en.wikipedia.org/wiki/Sampling_(statistics)).
77
This means that with a short word list, you are more likely to see repeats.
88

9-
* Jabber mode (for <a href="https://en.wikipedia.org/wiki/Jabberwocky"><i>Jabberwocky</i></a>)
9+
* Jabber mode (for [_Jabberwocky_](https://en.wikipedia.org/wiki/Jabberwocky))
1010
lets you see new words spliced together from existing words: for example, like the way we combine
11-
<i>spoon</i> and <i>fork</i> to make <i>spork</i>. This uses <a
12-
href="https://en.wikipedia.org/wiki/N-gram">n-grams</a> using the method detailed in <a
13-
href="https://johnkerl.org/randspell/randspell-slides-ts.pdf">this write-up</a> from 2012. My
11+
_spoon_ and _fork_ to make _spork_. This uses
12+
[n-grams](https://en.wikipedia.org/wiki/N-gram) with the method detailed in
13+
[this write-up](https://johnkerl.org/randspell/randspell-slides-ts.pdf) from 2012. My
1414
implementation then was a command-line version written in Python; the implementation here is the
1515
same algorithm, but in JavaScript, usable on desktop or mobile.
1616

17-
* Pattern mode is a dictionary lookup. If you type in only letters, such as <code>example</code>,
17+
* Pattern mode is a dictionary lookup. If you type in only letters, such as `example`,
1818
you'll the word at the bottom if it's in the dictionary, or nothing if it isn't. You can also use
19-
a <i>.</i> to match a single letter, and/or <i>*</i> to match zero or more letters. For example,
20-
<i>t..th</i> will match <i>teeth</i>, <i>tooth</i>, and <i>tenth</i>; <i>th*st</i> will show you
21-
all words starting with <i>th</i> and ending with <i>st</i>.
19+
a `.` to match a single letter, and/or `*` to match zero or more letters. For example,
20+
`t..th` will match `teeth`, `tooth`, and `tenth`; `th*st` will show you
21+
all words starting with `th` and ending with `st`.
2222

23-
* <a href="https://en.wikipedia.org/wiki/Anagram">Anagram</a> mode lets you see all the ways the
23+
* [Anagram](https://en.wikipedia.org/wiki/Anagram) mode lets you see all the ways the
2424
letters of a given word can be permuted to make another existing word.
2525

2626
* Bee mode is a tool of last resort for the New York Times Spelling Bee (see below
@@ -29,21 +29,21 @@ This app lets you play around with word lists in various ways:
2929
## About the word lists
3030

3131
* The Usual Suspects list is a hand-curated collection of words I often miss in the NYT Spelling Bee (see below).
32-
* The <a href="https://en.wikipedia.org/wiki/Swadesh_list">Swadesh list</a> is about two hundred
32+
* The [Swadesh list](https://en.wikipedia.org/wiki/Swadesh_list) is about two hundred
3333
core English words, originally developed for linguistic research.
34-
* The 2K list is the <a href="https://en.wikipedia.org/wiki/General_Service_List">General Service List</a>
34+
* The 2K list is the [General Service List](https://en.wikipedia.org/wiki/General_Service_List)
3535
published by Michael West in 1953.
3636
* The 10K through 40K lists were found on a web search.
3737
* The 300K list is one I&rsquo;ve accumulated over the years, from multiple sources I&rsquo;ve lost track of.
38-
* The Finnegan list is taken from an online corpus of <i>Finnegans Wake</i>.
38+
* The Finnegan list is taken from an online corpus of _Finnegans Wake_.
3939
* There are some non-English lists I found on the web. There is a skew toward languages I have
4040
some personal familiarity with.
4141

4242
## On-line help
4343

4444
Please see the hosted app, at either of the following locations, for on-line help:
4545

46-
* [https://johnkerl.org/word-finder](https://johnkerl.org/word-finder).
46+
* [https://johnkerl.org/word-finder](https://johnkerl.org/word-finder)
4747
* [https://johnkerl.github.io/word-finder](https://johnkerl.github.io/word-finder)
4848

4949
## JavaScript tooling

index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,9 @@ <h1><span class="boxed-text rounded">Word Finder</span></h1>
458458
<hr>
459459

460460
<div class=smallertext>
461-
Source and documentation: <a href="https://github.com/johnkerl/word-finder/blob/main/README.md">github.com/johnkerl/word-finder</a>
461+
Source and documentation:
462+
<br>
463+
<a href="https://github.com/johnkerl/word-finder/blob/main/README.md">github.com/johnkerl/word-finder</a>
462464
</div>
463465
<br>
464466

staging.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,9 @@ <h1><span class="boxed-text rounded">Word Finder</span></h1>
458458
<hr>
459459

460460
<div class=smallertext>
461-
Source and documentation: <a href="https://github.com/johnkerl/word-finder/blob/main/README.md">github.com/johnkerl/word-finder</a>
461+
Source and documentation:
462+
<br>
463+
<a href="https://github.com/johnkerl/word-finder/blob/main/README.md">github.com/johnkerl/word-finder</a>
462464
</div>
463465
<br>
464466

0 commit comments

Comments
 (0)